Explain how to use replyall() method in c# ?
I want to include all cc members in responding mail and same subject.
I searched in MSDN but no example is provided.
Can you please help me out?
Thank you,
Ram.
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.
Rajagopalan R VPosted May 26, 2014, 3:28 AM
for (i = 0; i <= dtmail.Rows.Count; i++)
{
ccemailid.Text = dtmail.Rows[i][colname].ToString();
MailMessage Msg = new MailMessage();
Msg.From = new MailAddress("[email protected]");
Msg.To.Add(emailid.Text);
Msg.CC.Add(ccemailid.Text);
}
You May Can Use This
With Regards.....,
R.V.Rajagopalan
If U Get Solution With This Mark it Has Answer.......,