View Single Post
 
Old 07-14-2023, 03:51 PM
juacab9 juacab9 is offline Windows 11 Office 2021
Novice
 
Join Date: Jul 2023
Posts: 12
juacab9 is on a distinguished road
Default

Sub ReplyMSG()
Dim olItem As Outlook.MailItem
Dim olReply As MailItem ' Reply

For Each olItem In Application.ActiveExplorer.Selection
Set olReply = olItem.ReplyAll
olReply.HTMLBody = "Am currently working on your quote, I should have it done today or first thing tomorrow morning. Any questions feel to email directly please. To speed up the process please make sure you have the following on the quote." & vbCrLf & olReply.HTMLBody

<ol>
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
olCurrent.Display
olCurrent.Categories = "Juan Cabrera"
olReply.Send & Signature
Next olItem
Set olItem = Nothing
Set olReply = Nothing
End Sub
Reply With Quote