QTP的那些事--有关的一些重要可用的函数(发送邮件)

采用vbs进行调用邮箱进行发送邮件,这个主要可以使用在QTP中例如执行完用例后调用该方法进行通知项目组的人员,测试的一些执行情况。

方法如下:

Function SendMail(SendTo, Subject, Body, Attachment) 
 
    Set ol=CreateObject("Outlook.Application") 
 
    Set Mail=ol.CreateItem(0) 
 
    Mail.to=SendTo 
 
    Mail.Subject=Subject 
 
    Mail.Body=Body 
 
    If (Attachment <> "") Then 
 
        Mail.Attachments.Add(Attachment) 
 
    End If 
 
    Mail.Send 
 
    ol.Quit 
 
    Set Mail = Nothing 
 
    Set ol = Nothing 
 
End Function 
 
posted @ 2011-12-31 22:08  高级测试开发网  阅读(347)  评论(0编辑  收藏  举报
了解开发资源最新动态:https://seniortesting.club