Trouble with VBA email

bts73

New Member
Joined
Mar 14, 2019
Messages
3
Hello. I'm working on a project that requires a button click to launch an Outlook message box with a pre-filled template. I have had success with using the =hyperlink("mailto") function, but the contents of the message exceed 255 characters. I'm very novice at VBA script, and although I have tried a whole bunch of things I found online, but so far nothing has worked, at least without throwing errors at me that I personally can't debug.

For refernce here are the cell values I am using:

To: D30
CC: H31
Suject: D35
Body: F41 (I have concatenated the whole message here, but I would be interested in seeing how to combine text and cell values in VBA script: ex: "Hello", (A1) "Thanks")


Many thanks in advane for any advice you can offer.
 

Excel Facts

Add Bullets to Range
Select range. Press Ctrl+1. On Number tab, choose Custom. Type Alt+7 then space then @ sign (using 7 on numeric keypad)
Tanksfe quick respose! I have actually tried a few things from that site, but am unable to manipulate this wthout erors, literally the script is stopping at the top line where the sub command sits. ...and because I am so novice to this, I don't know where to start from a debugging perspective.
 
Upvote 0
Try this:

Code:
Body: "Hello: " & Range("A1").Value & " Regards " & Range("C2").Value & " .Thanks"
 
Upvote 0
Click # icon on reply toolbar and paste code between code tags so we can debug.
 
Upvote 0
Code:
[LEFT][COLOR=#000000][FONT=Courier]Sub CustomMailMessage()[/FONT][/COLOR][COLOR=#000000][FONT=Courier]
[/FONT][/COLOR][COLOR=#000000][FONT=Courier]Dim OutApp As Outlook.Application[/FONT][/COLOR][COLOR=#000000][FONT=Courier]
[/FONT][/COLOR][COLOR=#000000][FONT=Courier]Dim objOutlookMsg As Outlook.MailItem[/FONT][/COLOR][COLOR=#000000][FONT=Courier]
[/FONT][/COLOR][COLOR=#000000][FONT=Courier]Dim objOutlookRecip As Recipient[/FONT][/COLOR][COLOR=#000000][FONT=Courier]
[/FONT][/COLOR][COLOR=#000000][FONT=Courier]Dim Recipients As Recipients[/FONT][/COLOR][COLOR=#000000][FONT=Courier]
[/FONT][/COLOR][COLOR=#000000][FONT=Courier][/FONT][/COLOR][COLOR=#000000][FONT=Courier]
[/FONT][/COLOR][COLOR=#000000][FONT=Courier]  Set OutApp = CreateObject("Outlook.Application")[/FONT][/COLOR][COLOR=#000000][FONT=Courier]
[/FONT][/COLOR][COLOR=#000000][FONT=Courier]  Set objOutlookMsg = OutApp.CreateItem(olMailItem)[/FONT][/COLOR][COLOR=#000000][FONT=Courier]
[/FONT][/COLOR][COLOR=#000000][FONT=Courier][/FONT][/COLOR][COLOR=#000000][FONT=Courier]
[/FONT][/COLOR][COLOR=#000000][FONT=Courier]  Set Recipients = objOutlookMsg.Recipients[/FONT][/COLOR][COLOR=#000000][FONT=Courier]
[/FONT][/COLOR][COLOR=#000000][FONT=Courier]  Set objOutlookRecip = Recipients.Add("alias@domain.com")[/FONT][/COLOR][COLOR=#000000][FONT=Courier]
[/FONT][/COLOR][COLOR=#000000][FONT=Courier]  objOutlookRecip.Type = 1[/FONT][/COLOR][COLOR=#000000][FONT=Courier]
[/FONT][/COLOR][COLOR=#000000][FONT=Courier][/FONT][/COLOR][COLOR=#000000][FONT=Courier]
[/FONT][/COLOR][COLOR=#000000][FONT=Courier]  objOutlookMsg.SentOnBehalfOfName = "sales@domain.com"[/FONT][/COLOR][COLOR=#000000][FONT=Courier]
[/FONT][/COLOR][COLOR=#000000][FONT=Courier]  objOutlookMsg.Subject = "Testing this macro"[/FONT][/COLOR][COLOR=#000000][FONT=Courier]
[/FONT][/COLOR][COLOR=#000000][FONT=Courier]  objOutlookMsg.HTMLBody = "Testing this macro" & vbCrLf & vbCrLf[/FONT][/COLOR][COLOR=#000000][FONT=Courier]
[/FONT][/COLOR][COLOR=#000000][FONT=Courier]  'Resolve each Recipient's name.[/FONT][/COLOR][COLOR=#000000][FONT=Courier]
[/FONT][/COLOR][COLOR=#000000][FONT=Courier]  For Each objOutlookRecip In objOutlookMsg.Recipients[/FONT][/COLOR][COLOR=#000000][FONT=Courier]
[/FONT][/COLOR][COLOR=#000000][FONT=Courier]    objOutlookRecip.Resolve[/FONT][/COLOR][COLOR=#000000][FONT=Courier]
[/FONT][/COLOR][COLOR=#000000][FONT=Courier]  Next[/FONT][/COLOR][COLOR=#000000][FONT=Courier]
[/FONT][/COLOR][COLOR=#000000][FONT=Courier]  'objOutlookMsg.Send[/FONT][/COLOR][COLOR=#000000][FONT=Courier]
[/FONT][/COLOR][COLOR=#000000][FONT=Courier]  objOutlookMsg.Display[/FONT][/COLOR][COLOR=#000000][FONT=Courier]
[/FONT][/COLOR][COLOR=#000000][FONT=Courier][/FONT][/COLOR][COLOR=#000000][FONT=Courier]
[/FONT][/COLOR][COLOR=#000000][FONT=Courier]  Set OutApp = Nothing  [/FONT][/COLOR][COLOR=#000000][FONT=Courier]
[/FONT][/COLOR][COLOR=#000000][FONT=Courier]End Sub[/FONT][/COLOR][/LEFT]
 
Upvote 0

Forum statistics

Threads
1,214,643
Messages
6,120,707
Members
448,981
Latest member
recon11bucks

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