I am new to Perl and I am trying to send an email using the Mail::Sender module with HTML in the body part. I am using debug => 'x.log'
to analyze the mail sending process.
It looks like Perl is weirdly putting 3D after each '=' sign and 20 for each space in my HTML code (looks like URL codes for HTML). And after this no email is received at by client. What could be a problem here? (e.g. border="5"
becomes border=3D"5"
)
I am using $sender->SendEnc($BODY);
to send message and $sender->Open({to => "$userAtFaultEmail", subject => "$email_subject", ctype => "text/html", encoding => "quoted-printable"'});
to open mail connection.