try
{
foreach (GridViewRow gv in GDStudents.Rows)
{
if (gv.Cells[5].Text != "";)
{
EmailChange:
string fromEmailid = " ";
if (Email_NO == 1)
fromEmailid = "[email protected]";
else if (Email_NO == 2)
fromEmailid ="[email protected]";
else
fromEmailid ="";
{
foreach (GridViewRow gv in GDStudents.Rows)
{
if (gv.Cells[5].Text != "";)
{
EmailChange:
string fromEmailid = " ";
if (Email_NO == 1)
fromEmailid = "[email protected]";
else if (Email_NO == 2)
fromEmailid ="[email protected]";
else
fromEmailid ="";
MailMessage mailmess = new MailMessage();
SmtpClient smtpserver = new SmtpClient("smtp.gmail.com");
smtpserver.Credentials = new NetworkCredential("[email protected]","1234");
smtpserver.Host = "smtp.gmail.com";
smtpserver.Port = 587;
smtpserver.EnableSsl = true;
mailmess.From = new MailAddress("[email protected]","Confirmation");
mailmess.IsBodyHtml = true;
mailmess.Subject = "ConfirmationMail";
string body2 = "";
";
mailmess.Body = body2;
SmtpClient smtpserver = new SmtpClient("smtp.gmail.com");
smtpserver.Credentials = new NetworkCredential("[email protected]","1234");
smtpserver.Host = "smtp.gmail.com";
smtpserver.Port = 587;
smtpserver.EnableSsl = true;
mailmess.From = new MailAddress("[email protected]","Confirmation");
mailmess.IsBodyHtml = true;
mailmess.Subject = "ConfirmationMail";
string body2 = "
| Dear " + gv.Cells[1].Text.ToString().Trim() + ", |
" + TxtMessage.Text.ToString().Trim() + " |
mailmess.Body = body2;
mm.To.Add(new MailAddress(gv.Cells[5].Text.ToString().Trim()));
Thread threademail = new Thread(delegate()
{
sc.Send(mm);
});
threademail.IsBackground = true;
threademail.Start();
}
}
catch (Exception e11)
{ }
i am sending mail the below Gridview data to send mail.
txtmessage.text = "Dear Students, Thanks for booking the course";
In run mode In gridview as follows
StudentName Email
Rakesh [email protected]
Magesh [email protected]
i want to send the mail to rakesh from [email protected] and
i want to send the mail to Magesh from [email protected]
i written the code to send mail but i want to send mail to rakesh from [email protected] and i want to send the mail to magesh from [email protected]
for that how can i do in asp.net using c#.
Venkateshwar ReddyPosted Jan 21, 2016, 7:43 AM
" + TxtMessage.Text.ToString().Trim() + "