How to send the qtp results file by email (Lotus notes).
Answer / a.thirumalareddy@gmail.com
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 ? | 9 Yes | 8 No |
How does u create new test sets in TD?
Which scripting language used by quicktest professional?
Can any one send me the QTP Basic Coding Samples?
what is main diff of qtp8.2 and qtp9.0?
How do we retrieve the content from a text box in a web page
How do I lauch my test website using code from qtp in different environmet, uat and PPTE?
You say it is a bug but developer say it is not a bug then what will you do?
7 Answers Hewitt, Tech Mahindra,
I want to run my qtp scipt on the system where qtp is not installed .I don't want to install qtp but i want that system should use the qtp from another system in lan just the qtp instance should be launched on that system without having qtp installed on it .I probably know the solution that it will be solved through RMI but how to get this problem solved plz help i anyone know the answer
how can i replace any text from the qtp script with some anothere text
How to find operating system information using the qtp script?
Batch testing in howmany ways u perfrom in QTP
How can i use virtual objects? If have i created one new virtual object in a virtual object manager by following instructions.