Hi All,

Is there a way to make the subject (not the body) of the email sent by 
MIME::Lite in different color like red or something?

sub sendmail {
   my ($to,$cc,$subject,$data) = @_;
 my $msg = MIME::Lite->new(
     From =>'"$from",
     To =>"$to",
     Bcc=>"$cc",
     Subject =>"$subject",
     Type =>'text/html',
     Data =>"$data"
     );
   $msg->add('X-Priority' => 1); 
   $msg->send('smtp',$mailhost,Debug=>0);
}

Thanks
A.


      
_______________________________________________
Perl-Win32-Users mailing list
Perl-Win32-Users@listserv.ActiveState.com
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

Reply via email to