Tagged Questions
The mailaddress tag has no wiki summary.
8
votes
1answer
937 views
Address Standardization/Correction/Geocoding
My place of employment is looking into buying a third party tool, for batch based US and Canadian Address correction, with Geocoding.
What Products have you used?
What do you Like about them?
What ...
5
votes
12answers
7k views
How to parse formatted email address into display name and email address?
Given the email address: "Jim" <jim@example.com>
If I try to pass this to MailAddress I get the exception:
The specified string is not in the form required for an e-mail address.
How do I ...
2
votes
3answers
270 views
Check that email address is valid for System.Net.Mail.MailAddress
Currently, to avoid errors from being thrown up due to invalid email addresses, I do the following:
Dim mailAddress As MailAddress
Try
mailAddress = New MailAddress("testing@invalid@email.com")
...
2
votes
2answers
82 views
Should I use System.Net.Mail.MailAddress in my domain model, or just strings?
As covered well in this question, System.Uri is a good choice to reflect my intention for URIs. But what about for email addresses?
It seems not as clear-cut, because MailAddress has extra ...
0
votes
3answers
680 views
MailAddress in .NET
I'm attempting to send an email and instead of sending 5 individual emails to each person, I would like to send one mass email to all 5 people. The difference here is that I want everyone to show up ...