I want to send an email using javascript without using the outlook. I don’t want to use mailto object which use outlook for sending email.
Is there any direct method provided by JavaScript to send the data submitted in the form to an email address.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Kinda. At least, you have the possibility to do the following:
Via JavaScript, you can make a call to a server-based service which can dispatch an e-mail via SMTP. Whether this call is made via a simple form submission to your own server or via an
XmlHttpRequestto a remote service is only a matter of a) whether you will implement it yourself and b) whether you’re able to find a service elsewhere.tl;dr: