App Engine Receiving Email Caveat
The sample code makes this totally non-obvious, but the sender is actually a noisy string like “Joe Blow <joeblow@example.com>”. You need to parse it usingĀ email.utils.parseaddr(message.sender)[1]
The sample code makes this totally non-obvious, but the sender is actually a noisy string like “Joe Blow <joeblow@example.com>”. You need to parse it usingĀ email.utils.parseaddr(message.sender)[1]