Open
Description
A lot of users reach out regarding an SMTP package/endpoint for Plunk.
I have given it a go a long time ago but could not make it work. Mostly got stuck on the certificates needed to make it work.
If anyone would have experience with it and could make it work so the docker image can still build and deploy, that would be a very great addition!
Possibly with: https://nodemailer.com/extras/smtp-server/
All we would need is to accept the request, internally we can send it through to the API which would automatically create the contact and handle everything else.
The part that scares me from nodemailer's smtp-server
is this
const server = new SMTPServer({
secure: true,
key: fs.readFileSync("private.key"),
cert: fs.readFileSync("server.crt"),
});
We would need to have that .key
and .crt
file, unless I am just dead wrong?