in reply to Email conundrum, might be MIME::Lite vs. Earthlink
resulted in an email envelope and header that looked likemy $msg = new MIME::Lite( From => "Registration System <register\@example.com>", ...
which definitely looks bogus. Changing toFrom Registration-System-<register@example.com Fri Sep 26 18:36:37 2 +003 Return-Path: <"Registration System <register"@example.com> ... From: Registration System <register@example.com>
produces a sensible envelope and header, and Earthlink seems to like it.my $msg = new MIME::Lite( From => "register\@example.com", ...
Looks like it's time for an archeological dig into MIME::Lite.
|
|---|