How to apply my own message-id?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I'm using CDO to send emails.
want to change message-id like this: --but failed

Dim iMsg As New CDO.Message
With .Fields
..Item("urn:schemas:mailheader:Message-ID") = "(e-mail address removed)"
..Update
..Resync
End With ' Flds


seems CDO still generate the message-id by itself, ignoring mine.
how to change the message-id anyway? or even remove it?
 
Bombzj said:
I'm using CDO to send emails.
want to change message-id like this: --but failed

Dim iMsg As New CDO.Message
With .Fields
.Item("urn:schemas:mailheader:Message-ID") = "(e-mail address removed)"
.Update
.Resync
End With ' Flds


This really doesn't have anything to do with the VB.NET language, I would
try a different group.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top