Micro Focus QTP (UFT) Forums
how to send mail in Lotes Notes to multiple recipients using QTP? - Printable Version

+- Micro Focus QTP (UFT) Forums (https://www.learnqtp.com/forums)
+-- Forum: Micro Focus UFT (earlier known as QTP) (https://www.learnqtp.com/forums/Forum-Micro-Focus-UFT-earlier-known-as-QTP)
+--- Forum: UFT / QTP Others (https://www.learnqtp.com/forums/Forum-UFT-QTP-Others)
+--- Thread: how to send mail in Lotes Notes to multiple recipients using QTP? (/Thread-how-to-send-mail-in-Lotes-Notes-to-multiple-recipients-using-QTP)



how to send mail in Lotes Notes to multiple recipients using QTP? - Devkant - 08-21-2008

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:

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


RE: how to send mail in Lotes Notes to multiple recipients using QTP? - ashokghali - 08-22-2008

It might be useful for u...
http://en.allexperts.com/q/Using-Lotus-Notes-1427/Sending-Emails-via-Lotus.htm#b


RE: how to send mail in Lotes Notes to multiple recipients using QTP? - Devkant - 08-22-2008

Thanks a lot ashok. it realy helpful to me.