Thanks for your prompt reply. You've confirmed my suspicions, but of course
that isn't the answer I wanted to hear.
I did go to the product feedback site you mentioned. The issue had already
been posted, and had received a few votes. One contributor mentioned that
this was a breaking bug in Eudora. Nonetheless, MS is standing behind the
RFCs and Closed the issue. sigh.
Contact the third parties, as you mentioned, seems pretty futile. We're not
talking about isolated, specialized interests, but major applications, e.g.
Eudora, Google Desktop, etc.
I think I will just reimplement Message/MailMessage, which seems like a big
pain, but I don't see any other way around the issue.
...Mike

Signature
...Mike
> Hi Mike,
>
[quoted text clipped - 25 lines]
>
> This posting is provided "AS IS" with no warranties, and confers no rights.
Dave - 30 Apr 2007 22:42 GMT
This worked for me...
If you have it, try your version of system.web.mail instead of system.net.mail - you'll get messages telling you it's obsolete - but it'll give you the headers you want.
You need to reference system.web.mail
then:
System.Web.Mail.SmtpMail.SmtpServer = "mailrelay.trb"
Dim myMailMsg As New System.Web.Mail.MailMessage
Try
myMailMsg.From = "to@somewhere.com"
myMailMsg.To = "from@somewhereelse.com"
myMailMsg.Subject = "test from dave"
myMailMsg.Body = "This is A Test Using the web.mail namespace"
myMailMsg.BodyFormat = Web.Mail.MailFormat.Text
System.Web.Mail.SmtpMail.Send(myMailMsg)
Catch ex As Exception
MsgBox("Mail err " + ex.Message)
End Try
EggHeadCafe.com - .NET Developer Portal of Choice
http://www.eggheadcafe.com