Hello everybody,
I just had a problem when send attachment a database file. The file was received With content-transfer-encoding = "quoted-printable" and corrupted database
After some reading for CDO.Message Finlay I added:
"
$objEmail.Attachments(1).Fields.Item("urn:schemas:mailheader:content-disposition") = "attachment"
$objEmail.Attachments(1).Fields.Item("urn:schemas:mailheader:content-transfer-encoding") = "base64"
$objEmail.Attachments(1).Fields.Update
"
Thats help to send attachment without corrupt.