Dan Muey wrote:
> 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 ??

Hi Dan.


As far as I remember, you do this:

    headers => "In-Reply-To: $inreplyto",

for out-of-the-ordinary headers. You can put multiple lines
in the string:

    headers => "
In-Reply-To: $inreplyto
Strange-Header: unwanted";

or use a here-document.

HTH,

Rob






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

Reply via email to