N
Newbie
Hi all,
I'm looking for a way to send newsletter to my subscribers (1000+ in total).
I've managed to do it using .NET system.net.mail.smtpclient's sendAsync. I
read the email addresses from a table (in a MSSQL DB) using sqldatareader,
then looping through it to read each email address and add it to the
instance's 'TO' property (e.g: mail.to.add(r.item("email_addr")) ).
I test run it with my own addresses to see how it works.
And successfully send it asynchronously.
There's a minor prob that I need some insights from all of you guys: all the
email addresses that's being sent to are listed in the 'TO' field of each
email sent.
Suppose I send to 5 addresses, all 5 emails sent out having those 5 email
addresses in the 'TO' field.
What I want is: the 'TO' field of the sent-out email displaying only one
address (the recipient's email address), to give it a more personal touch.
Any idea on how to do it?
Many thanks,
Mike
I'm looking for a way to send newsletter to my subscribers (1000+ in total).
I've managed to do it using .NET system.net.mail.smtpclient's sendAsync. I
read the email addresses from a table (in a MSSQL DB) using sqldatareader,
then looping through it to read each email address and add it to the
instance's 'TO' property (e.g: mail.to.add(r.item("email_addr")) ).
I test run it with my own addresses to see how it works.
And successfully send it asynchronously.
There's a minor prob that I need some insights from all of you guys: all the
email addresses that's being sent to are listed in the 'TO' field of each
email sent.
Suppose I send to 5 addresses, all 5 emails sent out having those 5 email
addresses in the 'TO' field.
What I want is: the 'TO' field of the sent-out email displaying only one
address (the recipient's email address), to give it a more personal touch.
Any idea on how to do it?
Many thanks,
Mike