deno-smtp
deno-smtp copied to clipboard
SMTP implements for deno
Hi as this project looks dead to me so I created a fork see https://deno.land/x/denomailer wich implements 1. Attachments (#43 #56 ) 2. STARTTLS (thanks to #54 #47) 3. cc,...
I don't know how complete this is, but it's working for me.
Hey! First of all, I think we can all agree that this library is great! Thanks for that mate! One thing that would greatly improve the deno-smtp experience is being...
How hard would it be to implement support for upgrading unencrypted connections via the STARTTLS command? Deno seems to include an new unstable API [Deno.startTls](https://deno.com/deploy/docs/runtime-api) which in theory should support...
Thanks to @dbellingroth
If I'm not mistaken, currently just cover one specific setup: Connection with TLS (as read from ENV) and an email with both text and html content. - [ ] Test...
Now the user can just send an email with either `html` and `content`, `html` or `content` If only HTML is provided the email will fall back on a warning message...
From what I can tell, there is currently no way to send an email to multiple recipients (other than recreating the client from scratch and resending the email). API-wise, it...
Working fine with my Gmail credentials. I used the following credentials: For more port info click [here](https://support.microsoft.com/en-us/office/pop-imap-and-smtp-settings-8361e398-8af4-4e97-b147-6c6c4ac95353) ``` await client.connectTLS({ hostname: "smtp.office365.com", port: 587, username: "***@mydomain.com", password: "*********" }); ```...
Dear Author, I'm trying to use your smtp module. But have some problems with connection to Microsoft smtp server. Thank you for your any support in advance. I receive message:...