Naval, Beth directed me to you,
Yes. I created a contact form that when a person signs up for my free ebook, they submit and immediately go to a thank you page. I nee to know what goes into the code areas.
I plan on having Aweber as my Autoresponder. Here’s the window that shows up in Page HTML. Thanks again for your help. Dave
<?PHP
$mailto = "dave@howtostartyourbiz.com";
$email = $HTTP_POST_VARS['email'];
if ($email == "") {
$email = $mailto;
}
$mailsubj = "Type your mail subject here";
$mailhead = "From: $email\n";
reset ($HTTP_POST_VARS);
Yes. I created a contact form that when a person signs up for my free ebook, they submit and immediately go to a thank you page. I nee to know what goes into the code areas.
I plan on having Aweber as my Autoresponder. Here’s the window that shows up in Page HTML. Thanks again for your help. Dave
<?PHP
$mailto = "dave@howtostartyourbiz.com";
$email = $HTTP_POST_VARS['email'];
if ($email == "") {
$email = $mailto;
}
$mailsubj = "Type your mail subject here";
$mailhead = "From: $email\n";
reset ($HTTP_POST_VARS);
Comment