如何打开带有预定义附件的电子邮件。使用以下代码时,我从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
有人可以帮我吗?没有附件,效果很好。 还有其他方法可以打开带有附件的文件吗?
谢谢