in reply to New Lines are not printing after certain messages
my $message = join("\n" ,@messages); use MIME::Lite; my $msg = MIME::Lite->new( From => 'admin@yourdomain.net', To => 'users@yourdomain.net', Subject => 'CM Audit Daily Changes Notification', ); $msg->attach( Type => 'TEXT', Data => $message ); $msg->send();
|
|---|