Thread: Auto Responders
View Single Post
  #17  
Old 02-05-2009, 11:45 AM
FTinocoJr FTinocoJr is offline
Sergeant
 
Join Date: Nov 2006
Location: Chicago IL., and Cicero
Posts: 24
Default Re: Auto Responders

Hi, Karen

My name is Frank. I have a question regarding the autoresponder code
and what I want the autoresponder to do for me.

I've set up the autoresponder already and I do get the imputed text
in the fields on the forms of my website so that's ok.

My question is, how do i get a sample message when I enter my own
info on the forms? I want to get my own created message to see if I
did the email correct with formating and such.

When i did this on another website I was also getting the sample
message sent to me along with the entered text of the prospect and
now I can't make it send me my messages for my approval!

What could I be doing wrong?

P. S.
I did try your version about inserting the code in the start page and all
I got was a confirmation that I filled the form and that's ok but I would
prefer my prepared message that I created in the control panel under
autoresponder, by the way i created also a main email account with that
autoresponder address as instructed, so I don't know no mo!

Here is my website, it's a two field form at the bottom of every page.
http://www.TheFiveStarMarketingGroup.com and the contact us page.

I want to thank you ahead of time just in case you can make this happen
for me, I'm just out of ideas! I just wanted to see my own email first
before I sent it out.

Thank you
Francisco Tinoco Jr

Opps!

I forgot I do have this code in my contact us thank you page

page html - beginning of body -

<?PHP
$mailto = "franktjr@thefivestarmarketinggroup.com";
$email = $HTTP_POST_VARS['email'];
if ($email == "") {
$email = $mailto;
}
$mailsubj = "From the Contact us Page";
$mailhead = "From: $email\n";
reset ($HTTP_POST_VARS);
$mailbody = "Values submitted from web site form :\n";
while (list ($key, $val) = each ($HTTP_POST_VARS))
{
if ($key!="submit")
{
$mailbody .= "$key : $val\n";
}
}
mail($mailto, $mailsubj, $mailbody, $mailhead);
?>


That's it!
Thanks

Last edited by FTinocoJr; 02-05-2009 at 11:46 AM. Reason: Just wanted to get notified
Reply With Quote