in reply to MIME::Parser and mail from MS Outlook
$msg = MIME::Lite->new( From =>$from, To =>$to, Cc =>'', Subject =>$subject, Data => $body ); $msg->send(); ######################### # if you don't have sendmail on your system # Change how messages are sent ### Do something like this in your 'main': # MIME::Lite->send('smtp', "smtp.myisp.net", Timeout=>60); ### Now this will do the right thing: # $msg->send;## will now use Net::SMTP as shown above
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: MIME::Parser
by neilwatson (Priest) on Aug 06, 2002 at 18:27 UTC | |
by trs80 (Priest) on Aug 06, 2002 at 18:34 UTC | |
by neilwatson (Priest) on Aug 06, 2002 at 18:38 UTC |