VBA to edit and send email via Outlook template (as an Object), not as a local .OFT file. Is this possible?

elitef

Board Regular
Joined
Feb 3, 2016
Messages
58
Hello everyone,

Hoping that someone can help me...

Currently have this VBA and it has been stripped to make it web friendly.
I want to know, is there a way to use this same functionality but instead of using it on a local desktop version of the .oft file, can it be used on an embedded file instead.
So, if I were to go to Insert > Object > Browse > Select the .oft file, it would embed the file as on object, so I want to know how I can perform the function below of replacing something within the embedded template instead of the local file.

Excel Formula:
Sub SendEmail()



  Dim nEmail As MailItem

  Dim PathFileName As String

  PathFileName = "C:\PATH_TO_OFT_FILE\TEMPLATE.oft"

  Set nEmail = CreateItemFromTemplate(PathFileName)

  

  With nEmail



    .Subject = Worksheets("Email").Range("A1").Value

    

    .HTMLBody = Replace(.HTMLBody, "#Name", Worksheets("Email").Range("A2").Value)

        

    .SentOnBehalfOfName = "TEST@EMAIL.COM"

    BodyWithoutSignature = .HTMLBody

    .Display

    .HTMLBody = BodyWithoutSignature

    

  End With



End Sub
 

Excel Facts

How to fill five years of quarters?
Type 1Q-2023 in a cell. Grab the fill handle and drag down or right. After 4Q-2023, Excel will jump to 1Q-2024. Dash can be any character.

Forum statistics

Threads
1,214,593
Messages
6,120,434
Members
448,961
Latest member
nzskater

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