Any body have any how to add a IN-Reply-To header to a Mail::Sneder email?

Here's what I have where $inreplyto is the value of a In-Reply-To header stored in a 
database.


use Mail::Sender;
(new Mail::Sender)->MailMsg({ 
        from => "$admn",
        to => "$admn",
        smtp => "$smtp",
        subject => 'Test Mail Mailer,
        In-Reply-To => "$inreplyto",
        msg => "HI message"
});

It's not putting it in there that I can tell, what am I missing ??

Thanks

Dan


--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to