Reputation: 3013
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
Reputation: 9721
The Google App Engine Mail API only supports the specific headers listed in the documentation, currently:
Upvotes: 4