Get the message opening date in the outlook email

Status
Not open for further replies.
M

Memo

Hi,

I wander for the possibility to capture the opening date once the user open

a message from the outlook? Is there a way to do it by code?
 
Yes, that's possible. In VBA and VBScript, the Now() function returns the

current date/time. Exactly what you do with it depends on the details of

your scenario that you haven't shared with us yet.

Sue Mosher

"Memo" <Memo> wrote in message

news:D321755A-E2E3-4E05-ADCF-A2789A7BD487@microsoft.com...
> Hi,
> I wander for the possibility to capture the opening date once the user
> open
> a message from the outlook? Is there a way to do it by code?
>
 
Thank you very much; what I'm trying to do is to track when each user has

been received a particular e-mail and store that date in external container

(Database, SharePoint list …) this functionality is needed for auditing kind

of thing.

so the system will start sending an e-mails for several users and request

from them to start taking an action according to it and these actions must be

monitored by an auditors but in the same time the auditors do need to know if

the users read there e-mails or not

"Sue Mosher [MVP]" wrote:


> Yes, that's possible. In VBA and VBScript, the Now() function returns the
> current date/time. Exactly what you do with it depends on the details of
> your scenario that you haven't shared with us yet.
> > Sue Mosher
> > >

> "Memo" <Memo> wrote in message
> news:D321755A-E2E3-4E05-ADCF-A2789A7BD487@microsoft.com...
> > Hi,
> > I wander for the possibility to capture the opening date once the user
> > open
> > a message from the outlook? Is there a way to do it by code?
> >


> .
>
 
It could be done with either an add-in running on each user's machine or

with a custom message form published to the Organizational Forms library on

the company's Exchange server or to each user's Personal Forms library.

But before you start developing the spec for your application, you might

want to consider whether the built-in read receipt mechanism in Outlook

might be sufficient for your scenario.

Sue Mosher

"Memo" <Memo> wrote in message

news:7443F774-D0F2-4139-B3DD-769AD598E658@microsoft.com...
> Thank you very much; what I'm trying to do is to track when each user has
> been received a particular e-mail and store that date in external
> container
> (Database, SharePoint list .) this functionality is needed for auditing
> kind
> of thing.

> so the system will start sending an e-mails for several users and request
> from them to start taking an action according to it and these actions must
> be
> monitored by an auditors but in the same time the auditors do need to know
> if
> the users read there e-mails or not

> "Sue Mosher [MVP]" wrote:
>
> > Yes, that's possible. In VBA and VBScript, the Now() function returns the
> > current date/time. Exactly what you do with it depends on the details of
> > your scenario that you haven't shared with us yet.
>

>> "Memo" <Memo> wrote in message
> > news:D321755A-E2E3-4E05-ADCF-A2789A7BD487@microsoft.com...
> > > Hi,
> > > I wander for the possibility to capture the opening date once the user
> > > open
> > > a message from the outlook? Is there a way to do it by code?
 
Thank you for your replay, actually the receipt it might be going to be

perfect if the user won't be able to cancel it by clicking on don't sent a

receipt! How can I achieve the add-in or the publishing solution? What is the

deference's?

"Sue Mosher [MVP]" wrote:


> It could be done with either an add-in running on each user's machine or
> with a custom message form published to the Organizational Forms library on
> the company's Exchange server or to each user's Personal Forms library.

> But before you start developing the spec for your application, you might
> want to consider whether the built-in read receipt mechanism in Outlook
> might be sufficient for your scenario.
> > Sue Mosher
> > >

> "Memo" <Memo> wrote in message
> news:7443F774-D0F2-4139-B3DD-769AD598E658@microsoft.com...
> > Thank you very much; what I'm trying to do is to track when each user has
> > been received a particular e-mail and store that date in external
> > container
> > (Database, SharePoint list .) this functionality is needed for auditing
> > kind
> > of thing.
> > so the system will start sending an e-mails for several users and request
> > from them to start taking an action according to it and these actions must
> > be
> > monitored by an auditors but in the same time the auditors do need to know
> > if
> > the users read there e-mails or not
> > "Sue Mosher [MVP]" wrote:
> >
> >> Yes, that's possible. In VBA and VBScript, the Now() function returns the
> >> current date/time. Exactly what you do with it depends on the details of
> >> your scenario that you haven't shared with us yet.
> >
> >> "Memo" <Memo> wrote in message
> >> news:D321755A-E2E3-4E05-ADCF-A2789A7BD487@microsoft.com...
> >> > Hi,
> >> > I wander for the possibility to capture the opening date once the user
> >> > open
> >> > a message from the outlook? Is there a way to do it by code?


> .
>
 
A published form is suitable only if your scenario extends only to people in

your own organization *and* if you can meet the publishing requirement I

mentioned earlier. Information on creating published custom forms and

Outlook add-ins is available on MSDN and at the Outlookcode.com web site.

It's not something that can be covered in a few sentences of a Usenet post.

Sue Mosher

"Memo" <Memo> wrote in message

news:B960FFE2-1689-4FC4-BF2E-DB1337FD1CA1@microsoft.com...
> Thank you for your replay, actually the receipt it might be going to be
> perfect if the user won't be able to cancel it by clicking on don't sent a
> receipt! How can I achieve the add-in or the publishing solution? What is
> the
> deference's?

> "Sue Mosher [MVP]" wrote:
>
> > It could be done with either an add-in running on each user's machine or
> > with a custom message form published to the Organizational Forms library
> > on
> > the company's Exchange server or to each user's Personal Forms library.
>

>> But before you start developing the spec for your application, you might
> > want to consider whether the built-in read receipt mechanism in Outlook
> > might be sufficient for your scenario.
>

>> "Memo" <Memo> wrote in message
> > news:7443F774-D0F2-4139-B3DD-769AD598E658@microsoft.com...
> > > Thank you very much; what I'm trying to do is to track when each user
> > > has
> > > been received a particular e-mail and store that date in external
> > > container
> > > (Database, SharePoint list .) this functionality is needed for auditing
> > > kind
> > > of thing.
> >> > so the system will start sending an e-mails for several users and
> > > request
> > > from them to start taking an action according to it and these actions
> > > must
> > > be
> > > monitored by an auditors but in the same time the auditors do need to
> > > know
> > > if
> > > the users read there e-mails or not
> >>> > "Sue Mosher [MVP]" wrote:
> >> >> Yes, that's possible. In VBA and VBScript, the Now() function returns
> > >> the
> > >> current date/time. Exactly what you do with it depends on the details
> > >> of
> > >> your scenario that you haven't shared with us yet.
> > >
>> >> "Memo" <Memo> wrote in message
> > >> news:D321755A-E2E3-4E05-ADCF-A2789A7BD487@microsoft.com...
> > >> > Hi,
> > >> > I wander for the possibility to capture the opening date once the
> > >> > user
> > >> > open
> > >> > a message from the outlook? Is there a way to do it by code?

>

>
>> .
> >
 
Status
Not open for further replies.
Similar threads
Thread starter Title Forum Replies Date
T Opening email causes "Contacting ..." message Using Outlook 1
M I cannot start Microsoft Outlook 2013 directly opening a .eml message Using Outlook 1
R Error message when opening BCM BCM (Business Contact Manager) 1
J Opening an existing message from a database query Outlook VBA and Custom Forms 1
F Error Message when opening BCM Home and navigating to it BCM (Business Contact Manager) 5
T Error message when opening a custom form Outlook VBA and Custom Forms 3
M Search message, then (1) Jump to folder & (2) Select message that you searched for Outlook VBA and Custom Forms 2
Kika Melo How to mark as Junk any message not from Contacts (in Outlook.com) Using Outlook 3
G Outlook 365 My iCloud Outlook doesn’t work after reinstalling Microsoft365 on Windows 10 PC – now I get error message on contacts and calendar Using Outlook 1
G Get current open draft message body from VBA Outlook VBA and Custom Forms 1
E Outlook 365 Save Selected Email Message as .msg File - oMail.Delete not working when SEARCH Outlook VBA and Custom Forms 0
HarvMan Outlook 365 - Rule to Move an Incoming Message to Another Folder Using Outlook 4
F Outlook 2019 Forwarding Message and Keeping Unread Status Outlook VBA and Custom Forms 0
E Save Selected Email Message as .msg File - digitally sign email doesn't works Outlook VBA and Custom Forms 1
C Populate form data into message body Outlook VBA and Custom Forms 1
J Outlook 365 Add keywords from Listbox to the message body where cursor is placed Outlook VBA and Custom Forms 0
B How to create a button that sorts and selects the most recent message with ONE click Using Outlook 2
P "Item could not be moved" message occurs frequently for IMAP inbox, Office 365 Using Outlook 0
A rule name into message - how? Outlook VBA and Custom Forms 5
A Links in email getting error message about group policy Using Outlook 4
O How to find and replace a word in Outlook-Agenda-Subject and Message? Using Outlook 0
X Open Hyperlinks in an Outlook Email Message (Help with Diane's solution) Outlook VBA and Custom Forms 3
Commodore Unable to move message Using Outlook 3
Y Disable Microsoft Outlook Test Message Using Outlook 4
S Unable to change Message Class Outlook VBA and Custom Forms 0
S Changing Message Class Outlook VBA and Custom Forms 4
Cathy Rhone Mail merge error message Using Outlook 1
C Can't Locate an Unread Message in my Outlook view pane Using Outlook 0
G Send a greeting message to a contact on birthday Outlook VBA and Custom Forms 5
B Inconsistent handling of message read/unread status by Outlook Using Outlook 3
N Save Selected Email Message as .msg File Outlook VBA and Custom Forms 12
T Macro to move reply and original message to folder Outlook VBA and Custom Forms 6
O Outlook 2010 Add delete button to the side of the message list Using Outlook 1
Cathy Rhone The properties of the message have been changed Using Outlook 1
S Outlook 2016 A Shortcut to recall and delete and sent message. Using Outlook 1
T vba extract data from msg file as attachment file of mail message Outlook VBA and Custom Forms 1
S Unable to extract text from an Outlook email message Using Outlook 2
R Outlook 2016 Message-ID oddity/inconsistency? Using Outlook 7
J Implement Keywords based on body message Outlook VBA and Custom Forms 0
C must select message to trigger safe list Using Outlook 3
Witzker HowTo Change message Class of contact form Outlook VBA and Custom Forms 0
D.Moore VB script to Digitaly Sign newly created outlook message Outlook VBA and Custom Forms 2
O VBA Outlook Message Attachment - Array Index Out of Bounds Outlook VBA and Custom Forms 0
W September 2020 - No Default Email Client message after Office Update Using Outlook 1
A Flag Message for Follow Up after sending Outlook VBA and Custom Forms 1
S Outlook (2016 32bit; Gmail IMAP) - Save sent message to Outllook Folder Outlook VBA and Custom Forms 0
C Why won't Title display in message list? Using Outlook 1
icacream content in this message could not be downloaded.... Using Outlook 2
J Outlook 2016 After a search in all mailboxes, where is each message that was found? Using Outlook 6
R Warn before sending message Outlook VBA and Custom Forms 4

Similar threads

Back
Top