Beefy Boxes and Bandwidth Generously Provided by pair Networks
XP is just a number
 
PerlMonks  

Re: sendmail not returning error info

by sam_bakki (Pilgrim)
on Nov 27, 2014 at 03:50 UTC ( [id://1108527]=note: print w/replies, xml ) Need Help??


in reply to sendmail not returning error info

Hi

I have been using module Mail::Sendmail . With this module, we can error handle better and very easy to send mail via SMTP. See my sample code below,


use strict; use warnings; use Mail::Sendmail; my %mail = ( To => 'Bakkiaraj Murugesan <bakkiaraj.murugesan@bakki.com>' +, From => 'Bakkiaraj Murugesan <bakkiaraj.murugesan@bakki.com>' +, #Bcc => 'Someone <him@there.com>, Someone else her@there.com +', # only addresses are extracted from Bcc, real names disregarded #Cc => 'Yet someone else <xz@whatever.com>', # Cc will appear in the header. (Bcc will not) Subject => 'Test message - Bakki', 'X-Mailer' => "Mail::Sendmail version $Mail::Sendmail::VERSION", ); $mail{Smtp} = '<mysmtp>.<mydomain>'; # $mail{'X-custom'} = 'My custom additionnal header'; $mail{'message : '} = "Test Message"; # cheat on the date: $mail{Date} = Mail::Sendmail::time_to_date( time() ); if (sendmail(%mail)) { print "Mail sent OK.\n" } else { print "Error sending mail: $Mail::Sendmail::error \n" } print "\n\$Mail::Sendmail::log says:\n", $Mail::Sendmail::log;

Thanks & Regards,
Bakkiaraj M
My Perl Gtk2 technology demo project - http://code.google.com/p/saaral-soft-search-spider/ , contributions are welcome.

Replies are listed 'Best First'.
Re^2: sendmail not returning error info
by gsee (Acolyte) on Nov 28, 2014 at 13:29 UTC
    Ill take a look at this if I can (at work where getting modules added is a little tricky)

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1108527]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others surveying the Monastery: (5)
As of 2024-04-24 12:54 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found