Runtime error 1004 with "ActiveWorkbook.EnvelopeVisible = True"

mrbugsy

New Member
Joined
Jan 6, 2020
Messages
1
Office Version
  1. 2016
Platform
  1. Windows
Hi all,

I am trying to create a macro to send an email via outlook.

The code works on my computer but it does not seem to work on another computer, where a Runtime error 1004 is returned. "ActiveWorkbook.EnvelopeVisible = True" being highlighted when I try to debug.
Please see my code below.

Sub Send_Selection_Or_ActiveSheet_with_MailEnvelope()

ActiveSheet.Range("C1:M47").Select

ActiveWorkbook.EnvelopeVisible = True
With ActiveSheet.MailEnvelope
.Item.To = Sheets("Email").Range("A1").Text
.Item.CC = Sheets("Email").Range("A2").Text
.Item.BCC = ""
.Item.Subject = "Report_" & Format(ThisWorkbook.Sheets("Chart").Range("C2"), "dd mmm yy")
.Item.Send
End With
End Sub
 

Excel Facts

What is the last column in Excel?
Excel columns run from A to Z, AA to AZ, AAA to XFD. The last column is XFD.

Forum statistics

Threads
1,214,971
Messages
6,122,525
Members
449,088
Latest member
RandomExceller01

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