Viewing post 1 (of 1 total)
In case you're still interested:
Try something along these lines:
dim strAttachmentsstrAttachments = "C:\File1.txt" + ";" + ""C:\File2.txt"oSendMailTask.FileAttachments = strAttachments
dim strAttachments
strAttachments = "C:\File1.txt" + ";" + ""C:\File2.txt"
oSendMailTask.FileAttachments = strAttachments
This adds two attachments to your email.
October 31, 2006 at 10:10 am
#669020