shabtay has asked for the wisdom of the Perl Monks concerning the following question:

This node falls below the community's threshold of quality. You may see it by logging in.

Replies are listed 'Best First'.
Re: mail over smtp
by ikegami (Patriarch) on Dec 17, 2006 at 00:40 UTC
      MIME::Lite is sweet. I'm apparently really behind the times. I was about to suggest Net::SMTP (I love that one) — it would seem I could even use both: $net_smtp->datasend( $mime_lite_obj->as_str ); or even MIME::Lite->send('smtp', "smtp.myisp.net", Timeout=>60);. See? This is why I love perl monks.

      -Paul

Re: mail over smtp
by derby (Abbot) on Dec 17, 2006 at 02:41 UTC

    more code please. you don't tell us how your creating the email ... more specifically, how you're creating the email headers. Basically, you need to set the Disposition-Notification-To header.

    -derby