Reputation: 5507
I have seen some similar questions here on stack-overflow, but in my application i want when user click on confirm button automatic email go to the email id specified in the form with other details.
How can i implement this.
Upvotes: 0
Views: 1168
Reputation: 41858
You could just make a post request to a server and have the server then send the email.
Upvotes: 3
Reputation: 7895
You cannot send emails automatically without sending the user to the mail application. You could however, take advantage of a third party service like Amazon Simple Email Service http://aws.amazon.com/ses/ to send the message.
Upvotes: 0