I need a Macro that sends out email with one cells contents

Glervey

New Member
Joined
Nov 1, 2019
Messages
1
I need to fix this code so that the body of the email texted out is actually the contents of Button!D44
Not the actual text "Button!D44"

this is hat I got
Sub TexwhenDone()
'Must add references (Tools > References) to
' 1) OLE Automation
' 2) Microsoft Outlook xx.0 Object Library
Dim outlookApp As Outlook.Application
Dim myMail As Outlook.MailItem
Dim Source_File As String

Set outlookApp = New Outlook.Application
Set myMail = outlookApp.CreateItem(olMailItem)

myMail.To = "3855359246@messaging.sprintpcs.com; 3852889371@tmomail.net "
myMail.HTMLBody = "<b>=Button!D44</b><br>"


'myMail.Display True comment this out if you don't want to display email'
myMail.send 'comment this out if you don't want to send yet

End Sub
 

Excel Facts

Excel motto
Not everything I do at work revolves around Excel. Only the fun parts.
Hi,

Did you try:

Code:
[COLOR=#333333]myMail.HTMLBody = sheets("[/COLOR][B]Button").Range("D44")[/B]

?
 
Upvote 0
Hi @Glervey, welcome to the forum!

You can also try:

Code:
myMail.HTMLBody = [button!D44]
 
Upvote 0

Forum statistics

Threads
1,223,702
Messages
6,173,961
Members
452,539
Latest member
delvey

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