send automatic thank you email after feedback form submit
How to send automatic thank you email after feedback form submit in asp.net C#.
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Francis SusaimichaelPosted Jan 26, 2015, 9:55 PM
protected void btnSubmit_Click(object sender, EventArgs e)
{
// Submit your Feedback to DB
// Include your code here
//After submission sent the mail
}
In order to sent mail, you can use any mail clients or API(Like mailchimp). If you have any further assistance let me know. :)