We can't show MailTips right now

vmjan02

Well-known Member
Joined
Aug 15, 2012
Messages
1,062
Office Version
  1. 365
  2. 2021
  3. 2019
  4. 2016
  5. 2013
I have the below code and it is working all perfect. I don't understand it is completely ignores the code part
VBA Code:
.SentOnBehalfOfName = "F.mum@xx.com"
and outlook shows "We can't show MailTips right now"

Any idea or solution as the below scrip is working all good and error free.
VBA Code:
Sub Image()
'Application.Wait (Now + TimeValue("0:00:03"))
Sheets("Summary_").Select
    'Open a new mail item
    Dim outlookApp As Outlook.Application
    Set outlookApp = CreateObject("Outlook.Application")
    Dim OutMail As Outlook.MailItem
    Set OutMail = outlookApp.CreateItem(olmailItem)
    'Dim xPath As Range
    'Get its Word editor
    OutMail.Display
    xPath = Sheets("Reference").Range("a2")
    
   With OutMail
    .SentOnBehalfOfName = "F.mum@xx.com"
    .To = Sheets("Email").Range("C2").Value
    .CC = Sheets("Email").Range("C3").Value
 

Excel Facts

What did Pito Salas invent?
Pito Salas, working for Lotus, popularized what would become to be pivot tables. It was released as Lotus Improv in 1989.

Forum statistics

Threads
1,215,541
Messages
6,125,413
Members
449,223
Latest member
Narrian

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top