在PB中如何使用Microsoft Outlook发送邮件
【打印文章】
要实现这个功能,只需编写如下程序:
string ls_outlook,ls_attach,ls_addressee,ls_run_string,ls_path
//Microsoft Outlook 程序所在安全路径
ls_outlook = "C:\Program Files\Microsoft Office\Office\outlook.exe"
//收件人信箱
ls_addressee = "ferryman@163.net"
//添加附件
ls_attach = "c:\test.txt"
//生成完整的执行命令
ls_run_string = '"' + ls_outlook + '" /c IPM.Note /m ' + ls_addressee + ' /a' + ls_path
//执行程序
run(ls_run_string)
string ls_outlook,ls_attach,ls_addressee,ls_run_string,ls_path
//Microsoft Outlook 程序所在安全路径
ls_outlook = "C:\Program Files\Microsoft Office\Office\outlook.exe"
//收件人信箱
ls_addressee = "ferryman@163.net"
//添加附件
ls_attach = "c:\test.txt"
//生成完整的执行命令
ls_run_string = '"' + ls_outlook + '" /c IPM.Note /m ' + ls_addressee + ' /a' + ls_path
//执行程序
run(ls_run_string)
本栏文章均来自于互联网,版权归原作者和各发布网站所有,本站收集这些文章仅供学习参考之用。任何人都不能将这些文章用于商业或者其他目的。( Pfan.cn )
【编程爱好者论坛】