How to send QTP test results to an email...(with out using
Quality Center)?

Answer Posted / raj

Try this function

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

Is This Answer Correct ?    24 Yes 3 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Hi All, How to get repeated word in string . Thanks Balaji

941


How many types of parameters are available in quicktest professional?

526


What is text/text area checkpoint?

564


Explain the N-tire structure(process) for Funds Transfer ( means give N ways to funds Transfer in an Application)

1637


When using descriptive programming?

637






Could any one tell me "How can i recognize my cursor position using QTP 9.2" Give me a scripts for this

2067


what type of values given to objects. EX::Set oBrowser=Description.Create oBrowser(“micclass”).Value=”Browser”

1490


explain structured testing? plz guys with exp. do answer

1412


can any body give the banking domain concepts/links

3633


What are the factors on which script execution time is dependent?

612


Name the different types of recording modes?

578


I am getting the "test object property" Description properties "toolkit class" value By using "gettoproperty" in run time But my problem is how to get Ordinal Identyfier's type and value Type is index, value is 0 How can i keep this values in to required place How can i get these values in runtime I have to insert these "index" and "value" into another area Is there any script for this like "gettoproperties","Getroproperties" If anybody knows,please help me .

1729


What is checking bitmaps?

556


Explain Descriptive Programming Types with Examples?

925


can i compare two databases using QTP ?

1884