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 and VBA
Site Map Home Register Authors List Search Today's Posts Mark Forums Read Web Partners

Set reminder flags for recipient



 
 
Thread Tools Search this Thread Display Modes
  #1  
Old November 9th 07, 08:16 PM posted to microsoft.public.outlook.program_vba
JP[_2_]
external usenet poster
 
Posts: 18
Default Set reminder flags for recipient

Hello,

Would setting 'FlagStatus' & 'FlagDueBy' for an outgoing email message
also create reminders on the recipient's computer, or only the
sender's?




Thx,
JP

Ads
  #2  
Old November 12th 07, 02:05 PM posted to microsoft.public.outlook.program_vba
Ken Slovak - [MVP - Outlook]
external usenet poster
 
Posts: 5,848
Default Set reminder flags for recipient

It depends on the recipient's email program and their mail server. In most
cases the information on the flagging will be sent and received by the
recipient.

--
Ken Slovak
[MVP - Outlook]
http://www.slovaktech.com
Author: Professional Programming Outlook 2007
Reminder Manager, Extended Reminders, Attachment Options
http://www.slovaktech.com/products.htm


"JP" wrote in message
ps.com...
Hello,

Would setting 'FlagStatus' & 'FlagDueBy' for an outgoing email message
also create reminders on the recipient's computer, or only the
sender's?




Thx,
JP


  #3  
Old November 13th 07, 12:09 PM posted to microsoft.public.outlook.program_vba
JP[_2_]
external usenet poster
 
Posts: 18
Default Set reminder flags for recipient

Usually it's MS Outlook, but is there information in the return header
that could be checked to tell which mail reader it is?


--JP

On Nov 12, 9:05 am, "Ken Slovak - [MVP - Outlook]"
wrote:
It depends on the recipient's email program and their mail server. In most
cases the information on the flagging will be sent and received by the
recipient.

--
Ken Slovak
[MVP - Outlook]http://www.slovaktech.com
Author: Professional Programming Outlook 2007
Reminder Manager, Extended Reminders, Attachment Optionshttp://www.slovaktech.com/products.htm

"JP" wrote in message

ps.com...



Hello,


Would setting 'FlagStatus' & 'FlagDueBy' for an outgoing email message
also create reminders on the recipient's computer, or only the
sender's?


Thx,
JP- Hide quoted text -


- Show quoted text -



  #4  
Old November 13th 07, 02:03 PM posted to microsoft.public.outlook.program_vba
Ken Slovak - [MVP - Outlook]
external usenet poster
 
Posts: 5,848
Default Set reminder flags for recipient

Usually there is but again that depends on the email program and the mail
server.

--
Ken Slovak
[MVP - Outlook]
http://www.slovaktech.com
Author: Professional Programming Outlook 2007
Reminder Manager, Extended Reminders, Attachment Options
http://www.slovaktech.com/products.htm


"JP" wrote in message
ps.com...
Usually it's MS Outlook, but is there information in the return header
that could be checked to tell which mail reader it is?


--JP


  #5  
Old November 13th 07, 04:59 PM posted to microsoft.public.outlook.program_vba
JP[_2_]
external usenet poster
 
Posts: 18
Default Set reminder flags for recipient

Thank you. What I meant was, is there a property of an incoming email
that could be checked to determine what mail reader someone is using?
Or is it so client-specific that there's no way? For example

Dim olApp As Outlook.Application
Dim olNS As Outlook.Namespace
Dim olInbox As Outlook.MAPIFolder
Dim Item As Outlook.MailItem

Application.ScreenUpdating = False

Set olApp = GetObject(, "outlook.application")
Set olNS = olApp.GetNamespace("MAPI")
Set olInbox = olNS.GetDefaultFolder(olFolderInbox)

For Each Item In olInbox.Items

MsgBox Item.Subject
MsgBox Item.SenderName
MsgBox Item.To
MsgBox Item.Attachments.Count

????

End sub


Thx,
JP

On Nov 13, 9:03 am, "Ken Slovak - [MVP - Outlook]"
wrote:
Usually there is but again that depends on the email program and the mail
server.

--
Ken Slovak
[MVP - Outlook]http://www.slovaktech.com
Author: Professional Programming Outlook 2007
Reminder Manager, Extended Reminders, Attachment Optionshttp://www.slovaktech.com/products.htm

"JP" wrote in message

ps.com...



Usually it's MS Outlook, but is there information in the return header
that could be checked to tell which mail reader it is?


--JP- Hide quoted text -


- Show quoted text -



  #6  
Old November 13th 07, 07:22 PM posted to microsoft.public.outlook.program_vba
Ken Slovak - [MVP - Outlook]
external usenet poster
 
Posts: 5,848
Default Set reminder flags for recipient

No, there is no property like that. The best you can do is parse the
Internet mail headers to see if anything useful is in there.

The mail headers are only there in emails received over the Internet and
you must use an alternate API such as CDO 1.21 or Redemption
(www.dimastr.com/redemption) or Extended MAPI to read the
PR_TRANSPORT_MESSAGE_HEADERS property unless you are using Outlook 2007
where you can use the new PropertyAccessor object to read the headers. The
headers property is not exposed in the Outlook object model.

--
Ken Slovak
[MVP - Outlook]
http://www.slovaktech.com
Author: Professional Programming Outlook 2007
Reminder Manager, Extended Reminders, Attachment Options
http://www.slovaktech.com/products.htm


"JP" wrote in message
oups.com...
Thank you. What I meant was, is there a property of an incoming email
that could be checked to determine what mail reader someone is using?
Or is it so client-specific that there's no way? For example

Dim olApp As Outlook.Application
Dim olNS As Outlook.Namespace
Dim olInbox As Outlook.MAPIFolder
Dim Item As Outlook.MailItem

Application.ScreenUpdating = False

Set olApp = GetObject(, "outlook.application")
Set olNS = olApp.GetNamespace("MAPI")
Set olInbox = olNS.GetDefaultFolder(olFolderInbox)

For Each Item In olInbox.Items

MsgBox Item.Subject
MsgBox Item.SenderName
MsgBox Item.To
MsgBox Item.Attachments.Count

????

End sub


Thx,
JP


  #7  
Old November 14th 07, 01:54 PM posted to microsoft.public.outlook.program_vba
JP[_2_]
external usenet poster
 
Posts: 18
Default Set reminder flags for recipient

Thanks Ken, I'll keep plugging away!


--JP

On Nov 13, 2:22 pm, "Ken Slovak - [MVP - Outlook]"
wrote:
No, there is no property like that. The best you can do is parse the
Internet mail headers to see if anything useful is in there.

The mail headers are only there in emails received over the Internet and
you must use an alternate API such as CDO 1.21 or Redemption
(www.dimastr.com/redemption) or Extended MAPI to read the
PR_TRANSPORT_MESSAGE_HEADERS property unless you are using Outlook 2007
where you can use the new PropertyAccessor object to read the headers. The
headers property is not exposed in the Outlook object model.


  #8  
Old December 21st 07, 09:53 PM posted to microsoft.public.outlook.program_vba
mats mcleen
external usenet poster
 
Posts: 1
Default Set reminder flags for recipient

i use Office 2007 on my PC and Office 2008 on my Mac. 2007 has a
reminder feature so that when you send an email with a task to a
recipient, it pops up a message to remind them about the email. On the
Mac there is "Add Recipient" but it doesnt send reminder to the
recipient.

Does anyone know how to achieve the email recipient Entourage feature on
the Mac?



*** Sent via Developersdex http://www.developersdex.com ***
  #9  
Old December 26th 07, 07:51 PM posted to microsoft.public.outlook.program_vba
JP[_3_]
external usenet poster
 
Posts: 201
Default Set reminder flags for recipient

You probably want to post this in microsoft.public.outlook.mac.


HTH,
JP


On Dec 21, 4:53*pm, mats mcleen wrote:
i use Office 2007 on my PC and Office 2008 on my Mac. 2007 has a
reminder feature so that when you send an email with a task to a
recipient, it pops up a message to remind them about the email. On the
Mac there is "Add Recipient" but it doesnt send reminder to the
recipient.

Does anyone know how to achieve the email recipient Entourage feature on
the Mac?

 




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
MailItem flags Gary E. Outlook and VBA 8 January 18th 07 12:11 AM
Flags vortex2k4 Outlook and VBA 7 July 28th 06 03:27 PM
Help With Flags vortex2k4 Outlook and VBA 1 July 19th 06 11:18 AM
Maintain form when recipient forwards to another recipient Holly Utzinger Outlook - Using Forms 3 May 4th 06 11:40 PM
Outlook should let me type notes when adding reminder flags. Heather Outlook - Using Contacts 1 February 5th 06 01:51 AM


All times are GMT +1. The time now is 03:39 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.