kaisellgren / mailer

Compose and send emails from Dart. Supports file attachments, HTML emails and multiple transport methods.
MIT License
166 stars 86 forks source link

Fix yahoo SmtpServer definition regarding ssl #231

Closed schneiti closed 1 year ago

schneiti commented 1 year ago

The current definition of the yahoo SmtpServer uses port 465 which however is used for SSL connections (as described here). In the previous definition, the ssl parameter was set to false. This PR adds ssl: true to the parameter list of the yahoo SmtpServers constructor invocation.

This could be the solution to issue #229.

close2 commented 1 year ago

Thanks.