I am using following function to send a mail from outlook. It can send
a mail to 3 email ids at a time. i.e. SendTo,SendToCC,SendToBCC. I
want to send to more than three email Ids.
I tried to pass endToBCC = "emailid1,emailid2". but it display me
error as "General run error." at line "Line (277): "    Mail.Send"."
is it possible to pass two email ids?

Function SendMail(SendTo,SendToCC,SendToBCC ,Subject, Body,
Attachment)
    Set ol=CreateObject("Outlook.Application")
    Set Mail=ol.CreateItem(0)
    Mail.to=SendTo
    Mail.CC=SendToCC
    Mail.BCC=SendToBCC
    Mail.Subject=Subject
    Mail.Body=Body
    If (Attachment <> "") Then
        Mail.Attachments.Add(Attachment)
    End If
    Mail.Send
    Set Mail = Nothing
    Set ol = Nothing
End Function

-- 
You received this message because you are subscribed to the Google
"QTP - HP Quick Test Professional - Automated Software Testing"
group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/MercuryQTP?hl=en

Reply via email to