Setting up email to pull info from specific cells

Aussie5380

New Member
Joined
Sep 30, 2022
Messages
32
Office Version
  1. 2019
Platform
  1. Windows
Hi there,

Still quite new to macros, but learning along the way. I have a button setup to open a new email in my spreadsheet, however i was wondering if i could have this email pulls info from a set of cells in excel?

This is the code im using, i just need some guidance on how to have this setup:

Sub Create_Email()
Dim appOutlook As Outlook.Application
Dim mEmail As Outlook.MailItem

Set appOutlook = New Outlook.Application
Set mEmail = Outlook.CreateItem(olMailItem)

With mEmail
.To = ""
.Subject = "Purchase Leave Application"
.HTMLBody = ""
.Display
End With
Set mEmail = Nothing
Set appOutlook = Nothing
End Sub


What i want the email to look like is this:

Hi (value from cell),

Payroll has processed your Purchase leave Application. The total cost is (value from cell). A deduction will be setup in your record to recover the amount of (value from cell) per pay, for the next (value from cell) pays.

Many thanks,

Payroll Services


The Cell's in question are:

B7:D7 (Name - these cells are merged)

K9 (total value)

K12 (total per pay)

E16:F17 (how many pays recovery - cells are merged)

I have tried to follow a few guides, but not having much luck formatting the email the right way (displays as a single line of text), and having the values from the cells displayed in the email.

Any assistance would be greatly appreciated!
 

Excel Facts

Links? Where??
If Excel says you have links but you can't find them, go to Formulas, Name Manager. Look for old links to dead workbooks & delete.
Hello. Enjoy:
VBA Code:
Sub Create_Email()
    Dim appOutlook As Outlook.Application
    Dim mEmail As Outlook.MailItem
    Dim StrBody1 As String
    Dim StrBody2 As String
    
    StrBody1 = "Hi " & ActiveSheet.Range("B7").Value & "," & "<br><br>"
    StrBody2 = "Payroll has processed your Purchase leave Application. The total cost is " _
        & ActiveSheet.Range("K9").Value & ". A deduction will be setup in your record to recover the amount of " _
        & ActiveSheet.Range("K12").Value & " per pay, for the next " _
        & ActiveSheet.Range("E16").Value & " pays." _
        & "<br><br>" & "Many thanks," & "<br><br>" & "Payroll Services"
    
    Set appOutlook = New Outlook.Application
    Set mEmail = Outlook.CreateItem(olMailItem)

    With mEmail
    .To = ""
    .Subject = "Purchase Leave Application"
    .HTMLBody = StrBody1 & StrBody2
    .Display
    End With
    Set mEmail = Nothing
    Set appOutlook = Nothing
End Sub
 
Upvote 0

Forum statistics

Threads
1,214,641
Messages
6,120,694
Members
448,979
Latest member
DET4492

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