Forum Discussion

thouhid1's avatar
thouhid1
Occasional Contributor
4 years ago
Solved

Can someone help me fix this ? When i execute all test cases and try to notify result using Outlook

 i am getting below Error :

 

Server execution failed, ClassID: {0006F03A-0000-0000-C000-000000000046} 18:11:42 Normal 38.79

 

this is my code 

def sendEmailReport(emailToList):

outlookObj = Sys.OleObject["Outlook.Application"]
outlookMsg = outlookObj.CreateItem(0)
outlookMsg.To = emailToList
outlookMsg.Subject = emailSubjectLine
outlookMsg.HTMLBody = emailBodyText
outlookMsg.Send()

 

Failing at first line ? where am I going wrong 

3 Replies

  • AlexKaras's avatar
    AlexKaras
    Champion Level 3

    Hi,

     

    How your code is executed? Do you start it from TestComplete's IDE or unattended via task scheduler, for example?

    Can Outlook be started when you are logged in?

    Use test log to figure out what exactly line of code is failing and let us know.