I am generating a formatted text output using perl's format syntax, then I slurp the entire output to a scalar variable and when I send this as email body, entire text looses its formatting , funny thing is when I copy and paste the received emails body to a text editor (notepad) it pastes as original formatted text. I tried different encoding but nothing helped sending as html is even worse. Any pointers that could resolve this issue would be much appreciated. For email I am using MIME::Lite and Net::SMTP. Thanks /G
Edit: Here is the code I used to send the email:
$msg = MIME::Lite->new(
From => 'username@domain.com',
To => 'username2@domain.com',
Cc => '',
Subject => 'Helloooooo,!',
Type => 'multipart/related',
);
$msg->attach(
Type => 'text/plain charset=ANSI',
Data => encode("Windows-1250", $data)
);
$msg->send('smtp', 'smtp.domain', Debug=>0);
Type => ' text/plain charset=ANSI'withType => 'text/plain'be careful with spaces – PSIAlt Sep 25 '12 at 17:56