InterviewSolution
Saved Bookmarks
| 1. |
Using UFT, how to send email from outlook? |
|
Answer» The given below code help in sending email from outlook − Set Outlook = CreateObject ("Outlook.Application")Dim Message 'As Outlook.MailItemSet Message = Outlook.CreateItem (olMailItem)With Message .Subject = Subject .HTMLBody = TextBody .Recipients.Add (aTo) Const olOriginator = 0 .SendEnd With
|
|