We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When using Amazon SES it will throw an exception using sendraw with a new MimeKit message, if there are only Bcc addresses.
SES(maybe others?) doesn't like a blank 'To' header, if I manually remove that header after MimeKit message creation it works.
Fix: make default constructor NOT add 'To' header by default, only when To addresses are added.
The text was updated successfully, but these errors were encountered:
Don't initialize MimeMessage with an empty To: header.
9d814ac
Fixes issue #241
Fixed.
Sorry, something went wrong.
No branches or pull requests
When using Amazon SES it will throw an exception using sendraw with a new MimeKit message, if there are only Bcc addresses.
SES(maybe others?) doesn't like a blank 'To' header, if I manually remove that header after MimeKit message creation it works.
Fix: make default constructor NOT add 'To' header by default, only when To addresses are added.
The text was updated successfully, but these errors were encountered: