I'm trying to send an email with custom headers but for some reason they just don't get through.

When I call my mailing method in the console, my custom parameter is actually listed:

<X-SMTPAPI: {"messageid" : "nomnom"}>

This is what I'm doing in my code:

headers["X-SMTPAPI"] = "{\"messageid\" : \"nomnom\"}"
mail(:to => @user.email, :subject => "Confirmation"  )

Any idea what I'm doing wrong?

EDIT: The problem seems to be with using X-SMTPAPIas key. Using something else does work.

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

The syntax for specifying headers is as follows:

headers({'X-No-Spam' => 'True', 'In-Reply-To' => '1234@message.id'})

Looked at ActionMailer::Base documentation.

link|improve this answer
But where do I specify X-SMTPAPI than? – Sled Dec 14 '11 at 11:22
@Sled, look at the above code. @Semyon is setting two headers, X-No-Spam and In-Reply-To; you just need to substitute those two with your example. – d11wtq Dec 14 '11 at 11:56
Looks like you can also do: default "X-SMTPAPI" => "{\"messageid\" : \"nomnom\"}". – d11wtq Dec 14 '11 at 11:58
I tried both and none of these seem to be adding anything to the headers.. – Sled Dec 15 '11 at 9:20
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.