VaporSMTPKit
VaporSMTPKit copied to clipboard
SMTP support in Vapor 4
- **Added a static property named `defaultSMTPCredentials`:** - **sendMail() now has a default value for `credentials` parameter:**
Joannis, when I now update the package I get the following errors 1) SMTPClient has no member flatMap 2) Generic parameter T could not be inferred in sent = mails....
This pull request refactors the SMTP mailing functions to utilize async/await for improved concurrency and error handling. The changes include updating the `sendMails` and `sendMail` functions to be asynchronous and...
Hi, @joannisorlandos! I'm using code from the example. Can I send emails from a local server? let email = Mail(from: "[email protected]", to: [MailUser(name: "Myself", email: "[email protected]")], subject: "Your new mail...
Thank you for your great job. Do you have a plan to support async/await?
Hi, I try to send a mail trough my Mail provider: (1und1.de). But it's not working... When I use startTSL I get a `sendMailFailed`. Login works, because when I change...
I could not get it run from within my Vapor app, I imported VaporSMTPKit, but "Mail" and "MailUser" are unkown. What imports do I need? Is there a "complete" example?...
Sending emails without a `to` address filled out but only where the `bcc` doesn't process. Sending an email where any of the `to`, `bcc`, or `cc` fields should be valid....