[Solved] Sending Email from JavaScript with SMTP Server [closed]
[ad_1] You can use this tool: https://www.smtpjs.com/ It allows you to encrypt your SMTP credentials when you call it so you don’t expose them to the client side. Include this script: <script src=”https://smtpjs.com/v2/smtp.js”></script> And then you can call the service like this: Email.send(“[email protected]”, “[email protected]”, “This is a subject”, “this is the body”, “smtp.yourisp.com”, “username”, “password” … Read more