Help,我想在程序中自动发mail
各位大侠,在某台机器上至少装有两种mail系统,如OUTLOOK,NOTES。我想在程序中选择其中的一种然后发mail
我的问题是1、怎样选择发mail的程序 2、发mail的指令是什么
谢谢大家了.
在工程中加入MAPI控件,放一个MAPSession和MAPIMessage到窗体上
MAPISession.DownLoadMail = False MAPISession.LogonUI = True MAPISession.SignOn With MAPIMsg .MsgIndex = -1 .RecipDisplayName =邮箱地址 .AddressResolveUI = True .MsgSubject = 主题 .MsgNoteText = 内容 .AttachmentIndex = 0 .AttachmentPathName = txtAttachment.Text .AttachmentType = mapData .SessionID = MAPISession.SessionID .Send End With MAPISession.SignOff