| Author: venkatesan 26 May 2009 | Member Level: Diamond Points : 1 |
Are you sure this is concept of sending bulk email concept .. i think this is not..???
|
| Author: Danasegarane.A 28 May 2009 | Member Level: Diamond Points : 2 |
The thing is that in this line
bjMessage.To.Add(Convert.ToString(to address list); // adding all the recpients to the "TO" list
could be like
Dim toMailids as string="test@test.com,test3@test.com" bjMessage.To.Add(toMailids)
That is join the Mail id using either by ; or ,
|