![]() |
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. |
|
|
Thread Tools | Search this Thread | Display Modes |
#1
|
|||
|
|||
![]()
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
|
|||
|
|||
![]()
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
|
|||
|
|||
![]()
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
|
|||
|
|||
![]()
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
|
|||
|
|||
![]()
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
|
|||
|
|||
![]()
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
|
|||
|
|||
![]()
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
|
|||
|
|||
![]()
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
|
|||
|
|||
![]()
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 |
Display Modes | |
|
|
![]() |
||||
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 |