|
Posted by Kaj Hejer on November 17, 2004, 12:56 am
Please log in for more thread options
Hi!
I'm using Mail::Sender to send email, ref.
http://search.cpan.org/~jenda/Mail-Sender-0.8.10/Sender.pm
Almost everything work just fine :) except from the encoding of the
subject-field.
When I'm using some norwegian characters like "æ", "ø" or "å" in the
subject-field SpamAssassin complains about SUBJ_ILLEGAL_CHARS when I'm
receiving the emails.
I compose my email with something like the following:
eval {
(new Mail::Sender)
->OpenMultipart({
smtp => 'smtp.myserver.com',
to => $to,
from => $from,
subject => 'Testing (æøØÅ)',
multipart => 'mixed'
})
.....
}
Any ideas on how to change the perlcode so SpamAssassin will stop
complaining?
TIA!
-Kaj :)
|