in reply to Net::SMTP and TLS Problems!
Net::SMTP can handle TLS Stuffs also.
you can also increase the log level upto 14 in Net::SMTP module and you can get more detail on STARTTLS command mode.
you can use the above module to send mail.use Mail::Sendmail; %mail = ( To => 'you@there.com', From => 'me@here.com', Message => "This is a very short message" ); sendmail(%mail) or die $Mail::Sendmail::error; print "OK. Log says:\n", $Mail::Sendmail::log;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Net::SMTP and TLS Problems!
by Anonymous Monk on Nov 02, 2005 at 06:17 UTC | |
by tirwhan (Abbot) on Nov 02, 2005 at 10:01 UTC | |
by Anonymous Monk on Nov 02, 2005 at 18:08 UTC |