- or download this
package MIME::Entity::Ray;
use strict;
...
$body =~ s!\n!\r\n!g;
return $body
};
- or download this
use MIME::Entity;
my $old_stringify_body = \&MIME::Entity::stringify_body;
...
$body =~ s!\n!\r\n!g;
return $body
};
- or download this
local $MIME::Entity::BOUNDARY_DELIMITER = "\r\n";