Is there a way to specify multiple email addresses in the To line of a message created with the new mail Namespace.
With the old namespace, I could just use address1@dotnet.itags.org.mail.com; address2@dotnet.itags.org.mail.com; address3@dotnet.itags.org.mail.com
This worked great, since it allowed everyone that was in the To line tobe visible, and not require sending 15 emails to the SMTP server, justone, and then it created what it needed to send out to each recipient.Now, I get an error that the recipient email is malformed, and can'tsend it. Know of any way around this?
Dim Msg As New MailMessage
Dim To_Addr As MailAddressCollection = Msg.To
To_Addr.Add(New MailAddress("address1@.mail.com", "Some Person"))
To_Addr.Add(New MailAddress("address2@.mail.com", "Some Other Person"))
To_Addr.Add(New MailAddress("address3@.mail.com")
Muchas Gracias. I'm still trying to get the hang of all of the changes, and my last solution was from-the-hip as it was. Apparently, ASP.NET 2.0 is much less forgiving of from-the-hip programming...
Now, for whatever reason, I've come up against a new error...
Server Error in '/' Application.
Compilation Error
Description:An error occurred during the compilation of a resource required to service this request. Please review the following specific error details and modify your source code appropriately.Compiler Error Message:BC30516: Overload resolution failed because no accessible 'New' accepts this number of arguments.
Source Error:
Line 637: Dim strStake As String
Line 638:
Line 639: Dim objMessage As New MailMessage
Line 640: Dim emSubject As String
Line 641: Dim emBody As String
The code behind this is is exactly as it shows up there. So, I'm backto confused... if I take out the "New" I get "Not set to Instance of anObject" errors.
I think you need to put () at the end of New Mailmessage()
From the SDK:
Usage
Visual Basic |
---|
Dim mailMessage1 As NewMailMessage() |
According to Microsoft, the ";" separated [To] adress list string should work - see the SMTP send method at :
http://msdn2.microsoft.com/en-us/library/h1s04he7
No, I get the same error, unfortunately.
0 comments:
Post a Comment