Hi,
I am using the vee 7.51 version and in its examples directory
examples/ActiveXAutomation/OutlookSendMail.vee
there is one example about send mail using outlook.
I am writing to ask whether it is possible to send mail with ATTACHMENT via outlook using vee?
If yes, would you please give me any hints or suggestions?
Your help would be really appreciated!
Yours,
Yiliu
I am using the vee 7.51 version and in its examples directory
examples/ActiveXAutomation/OutlookSendMail.vee
there is one example about send mail using outlook.
I am writing to ask whether it is possible to send mail with ATTACHMENT via outlook using vee?
If yes, would you please give me any hints or suggestions?
Your help would be really appreciated!
Yours,
Yiliu
Just to check with you whether you had figure out how to send attachment using outlook via VEE?
I am facing the same problem too.
try with the command " m.attachments.add("C:\a.txt"); "
but it keep giving error - > Illegal escape sequence
Set o = GetObject("", "Outlook.Application");
Set m = o.CreateItem(0);
m.To = to;
m.Subject = "Test results on "+date;
m.Body = "The tests have "+status+".\n\nJane";
m.attachments.add("C:\a.txt");
m.Send();