D
David Hearn
I am converting one of my ASP.NET 1.1 apps over to 2.0 and I see that the
old way of sending mail will still work, but I want to make it clean and
convert over to the new way of doing things. You used to be able to specify
CC and BCC recipients and now I can't figure out how to specify these.
I am using the following when converting:
Dim MailObj as New System.Net.Mail.SmtpClient
MailObj.Host = "myhost"
MailObj.Send(From.Text, To.Text, Subj.Text, Msg.Text)
So how do I specify CC and BCC for this?
Thanks in advance!
old way of sending mail will still work, but I want to make it clean and
convert over to the new way of doing things. You used to be able to specify
CC and BCC recipients and now I can't figure out how to specify these.
I am using the following when converting:
Dim MailObj as New System.Net.Mail.SmtpClient
MailObj.Host = "myhost"
MailObj.Send(From.Text, To.Text, Subj.Text, Msg.Text)
So how do I specify CC and BCC for this?
Thanks in advance!