
SriniK
New User
Mar 25, 2011, 6:40 AM
Post #1 of 1
(672 views)
|
|
High importance mail in lotus notes using MIME::Lite
|
Can't Post
|
|
Hi, I want to send high importance mail to Lotus notes. I am using Mime::lite. I have used 'X-Priority' and 'X-MSMail-Priority' but its not working. Is there any to do so <code> $msg = MIME::Lite->new( From => 'xxx@xxx.xxx', To => 'xxx.xxx@xxx.xxx', Subject => 'Tickets not having specific owner', 'X-Priority' => 1, 'X-MSMail-Priority' => 'High', Type => 'multipart/mixed'); $msg->attach( Type =>'text/html', Data => qq{ XXXXXX}); $msg->send(); </code> Thanks in advance
|