Hi,
I used firemail to send mail with attachment files. I have 6 files for a total of 2.32 Mo and I got error on this line:
ptMessage.Send("courrier.vsj.ca")
The error message is:
Specified argument was out of the range of valid values.Parameter name: size
The code look like that:
Dim ptMessage As New HtmlMessage("emeunier@vsj.ca", "REQUETE_TEST #", strMessage)
For Each fil In d.GetFiles()
ptMessage.Attachments.Add(fil.FullName)
Next fil
ptMessage.Send("courrier.vsj.ca")
Is there a limitation on the number of file that we can attach to mail?
Thank you,
Emilie Meunier