I have downloaded sendmail.pm ver 2.09 Everything seems to be configured properly but during a test I get a Server Overload error. I suspect it should give me a html verification page. Any Ideas?
Disregard my previous post I seem to be onto something, However now I'm get a response saying something like no recipient specified however a recipient is specified and it appears to be in the sendmail.pl instead of the sendmail.pm.
So I imagine that it has something to do with the format of recipient. I'll keep expermenting but if you have an idea let me know.
The format of the recipient is as described below. I've extracted code that I am using that sends to a list of recipients retreived from a file. Hope this helps.
#
# We set the To Recipients.
#$sm->To("Recipient <recipientid\@recipient.mail.domain>"
#
open(SQLLog, "< $SQLLog" or die "can't open $SQLLog: $!";
while (<SQLLog>)
{
chomp;
if ( ( ! /W0009 / ) and ( $_ ne "" ) )
{
$sm->To("Recipient <$_>"
if ( $cmData{cmDebug} ne "" ) { print "To <$_>\n"; }
}
}
close (SQLLog);
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.