Is it possible to send mail in a worker ?
Hi, I'm looking to send mail from a worker where SMTP identifiers would be dynamic because I have several addresses from an API. I just realized that nodemailer seems to be a problem on workers. Is there an alternative?
3 Replies
Error :
There's no way without relaying it through an external api (ex fetch a rest web server which handles the smtp part of things)
Cloudflare supports TCP Egress only via through custom tcp socket stuff, not supported by many packages, and even then SMTP / 25 is blocked
Okay, thanks for reply !