We can't show MailTips right now

vmjan02

Well-known Member
Joined
Aug 15, 2012
Messages
1,059
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

Convert text numbers to real numbers
Select a column containing text numbers. Press Alt+D E F to quickly convert text to numbers. Faster than "Convert to Number"

Forum statistics

Threads
1,215,022
Messages
6,122,726
Members
449,093
Latest member
Mnur

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