I'm trying to get the smtp message id (for example 250 2.0.0 OK E6/34-14477-91BB3595) after I send the email.
Eg:
Dim oSmtpPool As EASendMail.SmtpClient
Dim oMail As EASendMail.SmtpMail
..
..
oSmtpPool.SendMail(oMail)
'-- get smtp messageid here... --
Is there a way to get that smtp messageid value after I sent the email? I know about this event "OnReceiveResponse", in there I can see the value, but, is there a property that will get me that value?
Regards,