- or download this
$__to =~ s/(\r\n|\n\r|\r|\n)/\r\n/sg;
$__cc =~ s/(\r\n|\n\r|\r|\n)/\r\n/sg;
...
- or download this
my %mail =
(
...
"Subject" => "$__subject",
"Content-Type" => $__content_type,
);
- or download this
for ( $__to, $__subject, $__content_type, ... ) {
tr/\r\n/ /;
...
"Subject" => $__subject,
"Content-Type" => $__content_type,
);
- or download this
my @message_lines =
( '', # blank line
...
);
my $_mail_message = join( "\r\n", @message_lines );