Hi,
if outlook doesn't work we have CDO message which will send the mail without help of outlook express.
copy it to QTP it works.
but it wont work for social mailing sites eg(gmail. yahoo.com, etc), u can use it for internal purpose.
Any ways try with the outlook express this solution is just an alternative.
Rohan
if outlook doesn't work we have CDO message which will send the mail without help of outlook express.
Code:
Set objMessage = CreateObject("CDO.Message")
objMessage.Subject = "abcd"
objMessage.From = "abcd@xyz.com"
objMessage.To = "efgh@xyz.in"
objMessage.TextBody = "hi writ as much as u can."
objMessage.Send
copy it to QTP it works.
but it wont work for social mailing sites eg(gmail. yahoo.com, etc), u can use it for internal purpose.
Any ways try with the outlook express this solution is just an alternative.
Rohan