in reply to Encoded mailing
Where are you doing this encoding? I don't see this in your code fragment. (By the way, you should use code tags around code -- this helps make it stand out, and also automatically provides a link to allow code download.)
The CPAN documentation for MIME::QuotedPrint seems to be pretty straightforward: just use the encode_qp method to encode the information. So your fragment should be
Is that clear?use MIME::QuotedPrint; use MIME::Lite; my $msg = MIME::Lite->new( 'From' => $emailReturn, 'To' => $email, 'Subject' => encode_qp($subject), 'Type' => 'text/html', 'Data' => encode_qp($message), ); $msg->attr('MIME-Version' => '1.0'); $msg->attr('Encoding' => 'quoted-printable'); $msg->attr('content-type' => 'text/html'); $msg->attr("content-type.charset" => "windows-1252"); $msg->send('smtp', "IP ADRESS", Timeout=>60);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Encoded mailing
by clinton (Priest) on Aug 21, 2007 at 14:40 UTC | |
by Ibrid (Initiate) on Aug 22, 2007 at 13:13 UTC | |
by clinton (Priest) on Aug 22, 2007 at 13:29 UTC |