JustMePatrick
New member
- Local time
- Today, 12:49
- Joined
- Aug 18, 2021
- Messages
- 4
Hello and Greetings!
So, I've been researching this for the past couple of days and I'm finding myself rather stumped.
I've looked at a forum on here from a few years back along with the suggested links in the comments, plus a couple of other posts that I've found on other sites.
**Edit Note** I attempted to link to a previous post on here and to a post on mrexcel forum and it didn't let me
.
Here is a snippet from my Email Function:
Relating to the .Display True. I want to know when either the email message is either Sent or Closed. I'm not quite understanding of how to see that the E-mail Sent is True or the Email was closed without sending it is True, then take action based on that information.
I look forward to reading your suggestions.

So, I've been researching this for the past couple of days and I'm finding myself rather stumped.

I've looked at a forum on here from a few years back along with the suggested links in the comments, plus a couple of other posts that I've found on other sites.
**Edit Note** I attempted to link to a previous post on here and to a post on mrexcel forum and it didn't let me

Here is a snippet from my Email Function:
Code:
With oMail
.Recipients.Add ToEmailAddress
.CC = CCEmailaddress
.Subject = "TEST, DISREGARD: Accuracy Report: Record #->" & tRecord
.Body = "THIS IS A TEST. DISREGARD." & vbCrLf & "New Accuracy Report see attachement."
.Attachments.Add FileFolder & "\" & FileName
If MsgBox("Do you wish to Edit the Notification before Sending?" & vbCrLf & "Click Yes to Edit" & vbCrLf & "Click No to Send", vbQuestion + vbYesNo, "Question") = vbNo Then
.Send
Else
.Display True
End If
End With
'Some code displaying a model form alerting the user of a successful email sent.
Relating to the .Display True. I want to know when either the email message is either Sent or Closed. I'm not quite understanding of how to see that the E-mail Sent is True or the Email was closed without sending it is True, then take action based on that information.
I look forward to reading your suggestions.