R
rote
I'm getting the email address from an excel sheet.
But i need to send the email to multiple people
When printing the below i get
(e-mail address removed);[email protected];;
But i want (e-mail address removed);[email protected];
i don't need the extra semicolon
Thanks
code below
------
while (oledr.Read())
{
smail = oledr[0].ToString() + ";" + "<br>";
//smail += oledr[0].ToString() & ";";
//mail.To.Add(smail);
//this.Label1.Text = smail;
Response.Write(smail);
}
But i need to send the email to multiple people
When printing the below i get
(e-mail address removed);[email protected];;
But i want (e-mail address removed);[email protected];
i don't need the extra semicolon
Thanks
code below
------
while (oledr.Read())
{
smail = oledr[0].ToString() + ";" + "<br>";
//smail += oledr[0].ToString() & ";";
//mail.To.Add(smail);
//this.Label1.Text = smail;
Response.Write(smail);
}