in reply to Net::SMTP::SSL - sending HTML

HTML part is being sent as data portion(body). Why would line breaks or the quantity be of any problems while sending?

Net::SMTP has a debug option which comes handy to diagnose problems. As Net::SMTP::SSL claims to have the same API as Net::SMTP, so try your luck with Net::SMTP::SSL->new( 'Debug' => 1 , ... ) to see if you would get any better diagnostic messages.

Replies are listed 'Best First'.
Re^2: Net::SMTP::SSL - sending HTML
by edimusrex (Monk) on Jul 10, 2015 at 21:56 UTC
    I'll try that, thanks