Hey folks:
You'll probably hear a lot from me...our programmer decided to bolt and now this newbie is trying to make sense of all of our MySQL/PHP files....
On one of our sites there is a subscription set up for a newsletter. Once the person hits subscribe I get an email and the owner of the site also gets an email.....
$mailbody="$email has unsubscribed to Marshalling Your Resources!\n";
mail($webmaster_email,"Marshalling Your Resources Unsubscribe",$mailbody);
mail($owner_email,"Marshalling Your Resources Unsubscribe",$mailbody);
....how do I get it to send the subscriber a confirmation email?
Thanks a million!
You'll probably hear a lot from me...our programmer decided to bolt and now this newbie is trying to make sense of all of our MySQL/PHP files....
On one of our sites there is a subscription set up for a newsletter. Once the person hits subscribe I get an email and the owner of the site also gets an email.....
$mailbody="$email has unsubscribed to Marshalling Your Resources!\n";
mail($webmaster_email,"Marshalling Your Resources Unsubscribe",$mailbody);
mail($owner_email,"Marshalling Your Resources Unsubscribe",$mailbody);
....how do I get it to send the subscriber a confirmation email?
Thanks a million!