in reply to Re^4: Net::SMTP Module query
in thread Net::SMTP Module query
May be but anyway take a look at this:
#!/usr/bin/perl use MIME::Lite; use strict; use warnings; my $msg = MIME::Lite->new( From => 'someone@somewhere', To => 'someone@nowhere', Subject => 'It is a test', Data => 'I prefere this module.' ); $msg->send('smtp','host', Debug => 1);
Regards, Karl
«The Crux of the Biscuit is the Apostrophe»
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^6: Net::SMTP Module query
by gilesy (Initiate) on Nov 12, 2012 at 13:18 UTC |