how to send an email based on selection of customer id from combo box
the body of the mail is similar for all
1. Bind Dropdown Text with name of Customer and Value with email of customer
2. Set AutoPostBack = true and add OnSelectedIndexChanged event
3. Now you can get the SelectedValue using
string email = ddlCustomers.SelectedValue
And send email to them
© COPYRIGHT 2025 ASPSnippets.com ALL RIGHTS RESERVED.