Finkelson
Finkelson

Reputation: 3013

Google App Engine Mail API doesn't include headers when sending outgoing message

I'm trying to send an email with a header via GAE Mail API. I set a header:

message.setHeader("X-Priority", "1");

But AppEngine ignores it. And when I receive an email it doesn't contain a priority header.

Does anybody know how can I set the priority header for outgoing emails?

Upvotes: 0

Views: 113

Answers (1)

David
David

Reputation: 9721

The Google App Engine Mail API only supports the specific headers listed in the documentation, currently:

  • In-Reply-To
  • List-Id
  • List-Unsubscribe
  • On-Behalf-Of
  • References
  • Resent-Date
  • Resent-From
  • Resent-To

Upvotes: 4

Related Questions