Send newsletter
-
-
Hi Guroos, I want to send newsletter to all recipients. I do not want to write all email address in BCC. and Also do not want to write in TO box. What should I do? Simply I want every member should get newsletter with his own email address in TO box.
AkmalSyed, You could do it in a loop.
foreach (string email in emailCollection)
{
string header = "welcome to spammers are us!";
string body = "your message";Email email = new Email();
email.Header = header;
email.Body = body;
email.EmailAddress = email;
email.Send();
} -
AkmalSyed, You could do it in a loop.
foreach (string email in emailCollection)
{
string header = "welcome to spammers are us!";
string body = "your message";Email email = new Email();
email.Header = header;
email.Body = body;
email.EmailAddress = email;
email.Send();
} -
Jamman wrote:
Please send solution in C#. I am using ASP.NET,C#
It's rude to ask people to do your work for you. The poster gave you some useful advice. I suggest you use it to solve the problem yourself. If you want someone to do you your work, go to Rent A Coder. This site is for people who want to learn.
Paul Marfleet "No, his mind is not for rent To any God or government" Tom Sawyer - Rush