How to send QTP test results to an email...(with out using
Quality Center)?
Answer Posted / freak
Function SendMailOutlook(strMailto, Subject, Message,
strMailfrom)
'Create an Outlook object
Dim Outlook 'As New Outlook.Application
Set Outlook = CreateObject("Outlook.Application")
'Create e new message
Dim Message 'As Outlook.MailItem
Set Message = Outlook.CreateItem(olMailItem)
With Message
'You can display the message To debug And see state
'.Display
.Subject = Subject
.Body = Message
'Set destination email address
.Recipients.Add (strMailto)
'Set sender address If specified.
Const olOriginator = 0
IfLen(strMailfrom) > 0 Then .Recipients.Add
(strMailfrom).Type = olOriginator
'Send the message
.Send
End With
End Function
| Is This Answer Correct ? | 7 Yes | 10 No |
Post New Answer View All Answers
What are table and db checkpoints?
Explain the concept of object repository?
how to find that a file has been completely downloaded or not? I told that "download Complete" pop up. but he told the tool doesn't recognize the pop up
How did you use regular expressions in QTP and also in WR?
How will you check a web application for broken links using qtp?
How to capture a window in QTP?
How does quicktest professional identifies the object in the application?
How to data driven test for Win objects in QTP ?
What Folder Structure following in Keyword Driven Frame work?
What are the different types of functions available in qtp and explain ?
Hi I know two types of testing processes. 1. Reaquirments stage,test design,code review's, Design review's, Test Plan, Test Cases design, test execution, Defect Reporting and tracking, UAT, Signoff. 2.Test Initiation , Test Plan, Test Design, Execution,Bug tracking, UAT, Sign off.
What are some test assets and related extensions of qtp?
How do you create new test sets in td?
Call to copy of an action and call to existing action… i know the diff but in real project how to use..? i want live scenario.pls help me..
What is the difference in testing a client-server application and a web application?