Author Topic: Need help!  (Read 2404 times)

Offline fedlerner

Need help!
« on: November 30, 2006, 11:41:50 pm »
Hi!
I want to create an item, that when people buy it an use it, they've a "Form" to complete.
The form i want needs to have the following fields:
Forum username:
Domain wanted:
******* username:

And when the user clicks "Use item" it sends me an email to MY email with the info that user posted, and it sends the user to the "Congratulations, bla bla page"

Is this possible???

Please help, i really need this :(

Offline matkins70

Re: Need help!
« Reply #1 on: December 01, 2006, 12:16:26 am »
Simply use the Email Admin V2.

In the additional fields bit, put:
Code: [Select]
Forum Username: <input type="text" name="host_user" /><p>
Domain Wanted: <input type="text" name="host_domain" /><p>
******** Username: <input type="text" name="host_other" />

and then this in the message bit:
Code: [Select]
Forum Username: {$_POST["host_user"]}.
Domain Wanted: {$_POST["host_domain"]}.
******** Username: {$_POST["host_other"]}.


  --Shop Mailer

This can of course be edited to your liking.

Is it ok that after using the item it says 'message sent to admin'?  Sort of gets the point across that the request has been made, rather than having a congrats page.  You can always explain further by editing the description of the item.
« Last Edit: December 01, 2006, 12:19:48 am by matkins70 »