如何打开带有预定义附件的电子邮件?

时间:2019-09-23 16:34:44

标签: c++ shell email outlook

如何打开带有预定义附件的电子邮件。使用以下代码时,我从Microsoft Outlook 2013中收到错误消息:

代码:

const auto addr = "mailto:test@test.com?subject=Hi&Attach=\"D:\hello.txt\""; 

const auto addr = "mailto:test@test.com?subject=Hi&attachment=\"D:\hello.txt\"";

const auto addr = "mailto:test@test.com?subject=Hi&attachment=\"D:\\hello.txt\"";

ShellExecute(0, "open", addr, nullptr, nullptr, SW_SHOWNORMAL);

错误:

The command line argument is not valid. verify the switch you are using

有人可以帮我吗?没有附件,效果很好。 还有其他方法可以打开带有附件的文件吗?

谢谢

0 个答案:

没有答案