VB.net 调用OutLook发邮件(程序自动添加附件)

前端之家收集整理的这篇文章主要介绍了VB.net 调用OutLook发邮件(程序自动添加附件)前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

DimrkeyAsMicrosoft.Win32.RegistryKey
DimpathAsString
DimsubjectAsString
DimEmailToAsString
DimAttachPathAsString

rkey=Microsoft.Win32.Registry.ClassesRoot.OpenSubKey(mailto/shell/open/command)取得Outlook程序位置
IfrkeyIsNotNothingThen
path=rkey.GetValue(“”).ToString()&”“
path=path.Substring(0,path.IndexOf(”“))
path=path.Replace(“”",“”)
rkey.Close()
Try
subject=hello
EmailTo=myfriend@hotmail.com
AttachPath=c:/sss.txt
System.Diagnostics.Process.Start(path,-cIPM.Note/m&EmailTo.Trim&&subject=&subject.Trim&””&AttachPath.Trim)
CatchexAsException

EndTry EndIf

原文链接:https://www.f2er.com/vb/260684.html

猜你在找的VB相关文章