Hi Guru's
I have the following VBA code that works very well for me, as i use application OUTLOOK 2016 as my email.
Set Mail_Object = CreateObject("Outlook.Application")
With Mail_Object.CreateItem(o)
.Subject = " "
.To = " "
.CC =
.body = " "
.Display ' change the line .Display to .Send, if you don't need to review the E-Mail
End With
The issue is that my colleague calls Outlook 2016 via CHROME and we get an executable error on
With Mail_Object.CreateItem(o)
Does anyone know what the OLE is to create object when calling Outlook via CHROME
Any help would be amazing
thanks
I have the following VBA code that works very well for me, as i use application OUTLOOK 2016 as my email.
Set Mail_Object = CreateObject("Outlook.Application")
With Mail_Object.CreateItem(o)
.Subject = " "
.To = " "
.CC =
.body = " "
.Display ' change the line .Display to .Send, if you don't need to review the E-Mail
End With
The issue is that my colleague calls Outlook 2016 via CHROME and we get an executable error on
With Mail_Object.CreateItem(o)
Does anyone know what the OLE is to create object when calling Outlook via CHROME
Any help would be amazing
thanks