Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
fucntion to send mail in outlook works fine in qtpcode but does not work in .vbs
#1
Solved: 10 Years, 9 Months ago
Hi ,

The following function works fine in QTP but when i paste it in .vbs file it throws mismatch error and says the .vbs file has syntax errors.
How to run .vbs file
Code:
Public Function SendMail(SendTo,SendCC,Subject,Body,Attachment)
    Dim olApp
    Dim olNs
    Dim olMail
    Set olApp = GetObject(, "Outlook.Application")
    On Error GoTo 0
    Set olMail = olApp.CreateItem(olMailItem)
    With olMail
        .To = SendTo
        .CC = SendCC
        .Subject = Subject
        .Body = Body
        .Attachments.Add(Attachment)
        .Display
    .Send
    End With
    Set olMail = Nothing
    Set olApp = Nothing
End Function
Reply


Messages In This Thread
fucntion to send mail in outlook works fine in qtpcode but does not work in .vbs - by Rashmi - 08-13-2008, 09:20 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  QTP integration to build frame-works devries 2 3,289 03-02-2015, 10:50 AM
Last Post: prit deo
  Security Warning in Outlook automation priyaang 2 3,637 02-19-2014, 01:50 PM
Last Post: priyaang
  Not able to send spacebar with End Key to TE nbansal 1 3,390 02-08-2013, 11:31 PM
Last Post: coolguy
  How can I send variable value to html property for descriptive programming in QTP ritugoyal 13 21,694 11-26-2012, 12:55 PM
Last Post: binny318
  vbs funcion to create run time test set log frebuffi 0 2,322 08-27-2012, 07:13 PM
Last Post: frebuffi

Forum Jump:


Users browsing this thread: 1 Guest(s)