• QTP使用outlook发送邮件


    '发邮件
    Dim objOutlook 
    Dim objOutlookMsg
    Dim olMailItem 
    ' Create the Outlook object and the new mail object.
    Set objOutlook = CreateObject("Outlook.Application") 
    Set objOutlookMsg = objOutlook.CreateItem(olMailItem) 
    Set mapi = objOutlook.GetNameSpace("MAPI") 
    ' Define mail recipients
    objOutlookMsg.To = "1111111@qq.com;aaa@aaa.com" 
    'objOutlookMsg.CC = "my@email.com" 
    ' objOutlookMsg.BCC = "my@email.com" 
    ' Body of the message
    objOutlookMsg.Subject = "QTP Test Mail" 
    objOutlookMsg.Body = "This is a test mail" 
    '添加附件
    'ReportLocation ="e:"
    ' Attachment =ReportLocation&"rarTest"
    'objOutlookMsg.Attachments.Add(Attachment) 

    'Display the email
    objOutlookMsg.Display 
    ' Send the message
    objOutlookMsg.Send 
    ' Release the objects
    'objOutlook.quit 
    Set objOutlook = Nothing 
    Set mapi = Nothing

  • 相关阅读:
    java 类加载与初始化
    字符串匹配
    二分查找
    一般css样式开头公共部分
    js或jquery实现图片轮播
    w3chtml页面和css书写规范
    前端学习网站
    相关学习网站
    char对比varchar
    用抽象类或者接口?
  • 原文地址:https://www.cnblogs.com/duyy/p/3592222.html
Copyright © 2020-2023  润新知