- or download this
require MIME::Lite;
...
Type => 'text/html',
Data => $some_html,
);
- or download this
send_by_smtp ARGS...
Instance method. Send message via SMTP, using Net::SMTP. The opt
+ional ARGS
...
fields.
Returns true on success, false or exception on error.
- or download this
# change the delivery method and then call vanilla instance method sen
+d()
MIME::Lite->send(’smtp’, "smtp.myisp.net", Timeout=>60);
# ...
$msg->send();
- or download this
$msg->send(’smtp’, "smtp.myisp.net");