Good afternoon!
I know that this question has been asked before (Specifically in thread219-303984 ) but because it has been archived, I couldn't read any of the replies! I need to get this fixed! I have a customer that manages a database of their customers in an SQL database. Periodically they send out an e-mail to all their customers. The code for the e-mail part of the script is this:
Everything appears to work fine . . . EXCEPT . . . NO EMAIL TO ANY AOL account goes through! It is not returned, it is not put in spam, it just vanishes!
Does ANYONE have any Tips, Tricks, Ideas, or Helps to make these e-mails go through?!?!?
Thanks for the help!
The Youthman
I know that this question has been asked before (Specifically in thread219-303984 ) but because it has been archived, I couldn't read any of the replies! I need to get this fixed! I have a customer that manages a database of their customers in an SQL database. Periodically they send out an e-mail to all their customers. The code for the e-mail part of the script is this:
Code:
open(MAIL, "| $sendmail") or print "Cant open Sendmail: $!\n";
print MAIL "To: $to\n";
print MAIL "From: $from\n";
print MAIL "Reply-to: $from\n";
print MAIL "Subject: $form_subject\n\n";
print MAIL "$form_body";
close MAIL;
Does ANYONE have any Tips, Tricks, Ideas, or Helps to make these e-mails go through?!?!?
Thanks for the help!
The Youthman