是德科技
直播中

黄剑屏

7年用户 258经验值
私信 关注
[问答]

请问我是否可以通过outlook使用vee发送带ATTACHMENT的邮件?

嗨,我正在使用vee 7.51版本,并在其示例directoryexamples / ActiveXAutomation / OutlookSendMail.veethere有一个关于使用outlook发送邮件的例子。我写信是否可以通过outlook使用vee发送带ATTACHMENT的邮件?如果是
,请你给我任何提示或建议吗?你的帮助将非常感谢!你的,伊柳

以上来自于谷歌翻译


     以下为原文

  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  

回帖(3)

李雨坤

2019-6-17 09:57:29
嗨Yi Liu,请问您是否已经弄清楚如何使用VEE通过outlook发送附件?
我也面临同样的问题。
尝试使用命令“m.attachments.add(”C: a.txt“);”但它一直给出错误 - >非法转义序列设置o = GetObject(“”,“Outlook.Application”);
设m = o.CreateItem(0);
m.To = to;
m.Subject =“测试结果”+日期;
m.Body =“测试有”+状态+“。 n  nJane”;
m.attachments.add( “C: A.TXT”);
m.Send();

以上来自于谷歌翻译


     以下为原文

  Hi Yi Liu,

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+".nnJane";
m.attachments.add("C:a.txt");
m.Send();
举报

孙燕冉

2019-6-17 10:12:24
嗨MK,非常感谢您的回复。
我使用代码如下,“date”,“ - status - ”和“filename”是变量Set o = GetObject(“”,“Outlook.Application”);
设m = o.CreateItem(0);
m.To = to;
m.Subject =“测试结果”+日期;
m.Body =“测试有”+ -status - +“。 n  nJane”;
m.Attachments.Add(文件名);
m.Send();
编辑:chewean于2012年9月27日上午2:54编辑:chewean于2012年9月27日上午2:55编辑:chewean于2012年9月27日2:55 AM编辑:chewean于2012年9月27日2:56
上午

以上来自于谷歌翻译


     以下为原文

  Hi MK,

Thank you very much for your reply.

I use code as following, "date", "-status-" and "filename" is variable

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-+".nnJane";
m.Attachments.Add (Filename);
m.Send();

Edited by: chewean on Sep 27, 2012 2:54 AM

Edited by: chewean on Sep 27, 2012 2:55 AM

Edited by: chewean on Sep 27, 2012 2:55 AM

Edited by: chewean on Sep 27, 2012 2:56 AM
举报

李麒

2019-6-17 10:23:19
引用: 蓝色冰汐 发表于 2019-6-17 14:32
嗨MK,非常感谢您的回复。
我使用代码如下,“date”,“ - status - ”和“filename”是变量Set o = GetObject(“”,“Outlook.Application”);
设m = o.CreateItem(0);

没问题。
无论是来自变量还是文本常量或公式框,只需确保目录或路径值具有双斜杠。
享受VEE-ing :) -mk

以上来自于谷歌翻译


     以下为原文

  No problem. Regardless if it is from a variable or Text Constant or Formula box, just make sure directory or path value has double slash.

Enjoy VEE-ing  :)

-mk
举报

更多回帖

发帖
×
20
完善资料,
赚取积分