How can I send an update of "Sent" on VBA through Excel

nrah

New Member
Joined
Jun 17, 2021
Messages
3
Hi, I wanted to know how to code a "Sent' on an excel column once an email has been successfully sent through VBA. Attached below is my code and only displays a msg sent dialog box whether it has been sent or not, I don't know how to go about it

ToVariable = ToVariable & ";" & sh.Range("A" & i).Value
CCVariable = CCVariable & ";" & sh.Range("B" & i).Value
'Name = Name & "," & sh.Range("C" & i).Value
msg.To = ToVariable
msg.cc = CCVariable
'msg.To = sh.Range("A" & i).Value
'msg.cc = sh.Range("B" & i).Value
msg.Subject = sh.Range("E" & 2).Value
msg.body = Name & sh.Range("G" & 2).Value

'If sh.Range("E" & i).Value <> "" Then
'msg.attachments.Add sh.Range("E" & i).Value
'End If


msg.display

Next i


MsgBox "Mail Sent"
 

Excel Facts

Waterfall charts in Excel?
Office 365 customers have access to Waterfall charts since late 2016. They were added to Excel 2019.
? this
VBA Code:
msg.display
sh.Range("H" & i).Value = "Sent"
Next i
 
Upvote 0

Forum statistics

Threads
1,215,547
Messages
6,125,461
Members
449,228
Latest member
moaz_cma

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