How to send emails using JavaScript?

2

Like any good Content Management System (CMS), it's a trivial contact page. In mine it's no different. However, I wanted to do this without having to use some other language and / or technology, except JavaScript . My goal is to send emails to a particular Inbox (eg [email protected]) with the requirement stated above. Here is a Mockup of form responsible for the content to be sent:

    
asked by anonymous 10.03.2014 / 03:38

1 answer

3

You can use the API of Mandrill > for this. It's free for the twelve thousand first monthly shipments.

You would make API calls with simple HTTP requests. The easiest way would be to use jQuery and the function $.ajax to POST (all API calls are in POST ).

    
10.03.2014 / 03:41