A Microsoft Outlook email forum. Outlook Banter

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » Outlook Banter forum » Microsoft Outlook Email Newsgroups » Outlook - Using Forms
Site Map Home Register Authors List Search Today's Posts Mark Forums Read Web Partners

Get the message opening date in the outlook email



 
 
Thread Tools Search this Thread Display Modes
  #1  
Old November 10th 09, 07:29 AM posted to microsoft.public.outlook.program_forms
Memo
external usenet poster
 
Posts: 3
Default Get the message opening date in the outlook email

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?

Ads
  #2  
Old November 10th 09, 01:33 PM posted to microsoft.public.outlook.program_forms
Sue Mosher [MVP][_4_]
external usenet poster
 
Posts: 552
Default Get the message opening date in the outlook email

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, Outlook MVP
Author of Microsoft Outlook 2007 Programming:
Jumpstart for Power Users and Administrators
http://www.outlookcode.com/article.aspx?id=54


"Memo" wrote in message
news
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?



  #3  
Old November 11th 09, 01:41 PM posted to microsoft.public.outlook.program_forms
Memo
external usenet poster
 
Posts: 3
Default Get the message opening date in the outlook email

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, Outlook MVP
Author of Microsoft Outlook 2007 Programming:
Jumpstart for Power Users and Administrators
http://www.outlookcode.com/article.aspx?id=54


"Memo" wrote in message
news
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?



.

  #4  
Old November 11th 09, 03:38 PM posted to microsoft.public.outlook.program_forms
Sue Mosher [MVP][_4_]
external usenet poster
 
Posts: 552
Default Get the message opening date in the outlook email

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, Outlook MVP
Author of Microsoft Outlook 2007 Programming:
Jumpstart for Power Users and Administrators
http://www.outlookcode.com/article.aspx?id=54


"Memo" wrote in message
...
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" wrote in message
news
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?



  #5  
Old November 12th 09, 04:52 AM posted to microsoft.public.outlook.program_forms
Memo
external usenet poster
 
Posts: 3
Default Get the message opening date in the outlook email

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, Outlook MVP
Author of Microsoft Outlook 2007 Programming:
Jumpstart for Power Users and Administrators
http://www.outlookcode.com/article.aspx?id=54


"Memo" wrote in message
...
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" wrote in message
news 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?



.

  #6  
Old November 12th 09, 03:20 PM posted to microsoft.public.outlook.program_forms
Sue Mosher [MVP][_4_]
external usenet poster
 
Posts: 552
Default Get the message opening date in the outlook email

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, Outlook MVP
Author of Microsoft Outlook 2007 Programming:
Jumpstart for Power Users and Administrators
http://www.outlookcode.com/article.aspx?id=54


"Memo" wrote in message
...
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" wrote in message
...
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" wrote in message
news 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?



.



 




Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Most recent email is from random date in the past when opening OE6 Gordon Outlook Express 4 June 7th 09 09:37 PM
Outlook Macro for Opening Reuters, Opening Excel File, Send Email Tsp245 Outlook and VBA 1 August 13th 08 09:27 PM
Opening calendar always goes to same date Rico Outlook - Calandaring 2 April 30th 07 09:20 PM
How do I see due date of flags on contacts without opening each? Sarac Outlook - Using Contacts 1 August 28th 06 09:15 PM
focus date in calender on opening Chuck Outlook - Calandaring 2 February 1st 06 01:48 AM


All times are GMT +1. The time now is 01:07 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.Search Engine Friendly URLs by vBSEO 2.4.0
Copyright ©2004-2025 Outlook Banter.
The comments are property of their posters.