08-21-2008, 05:10 PM
Hi ,
I need to send mail to multiple recipients using QTP in Lotes Notes(Multiple email ids in TO box)
I used the below code:
Using above code, QTP is sending mail to recips1 and recips3 but not sending the mail to recips2.
So could you please advice me how to send mails to multiple ids using TO option only?
Thanks in Advance
Devkant
I need to send mail to multiple recipients using QTP in Lotes Notes(Multiple email ids in TO box)
I used the below code:
Code:
With doc
.form = "Memo"
.subject = subj
.sendto =recips1+","+recips2
.copyto =recips3
.body = bdy
.postdate = Date
End With
Using above code, QTP is sending mail to recips1 and recips3 but not sending the mail to recips2.
So could you please advice me how to send mails to multiple ids using TO option only?
Thanks in Advance
Devkant