Hello,
I have a problem with firemail. The "send date" of the mail is not good. It's suppose to be 2012-08-08 and it's 2012-04-08.
I test the send mail with SmtpClient of microsift and the date is good.
Here is my code:
******************************************************
** This is bad! *************************************
******************************************************
Dim ptMessage As New HtmlMessage("emeunier@vsj.ca", "test", "test")
ptMessage.To.Add("emeunier@vsj.ca")
ptMessage.Send("courrier.vsj.ca")
******************************************************
** This is good! *************************************
******************************************************
Dim client As New SmtpClient("courrier.vsj.ca")
Dim message As New MailMessage("emeunier@vsj.ca", "emeunier@vsj.ca")
message.Subject = "test"
client.Send(message)