Follow-up Flags and reminders

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I've noticed that when I flag an email I'm composing for follow-up, it
doesn't show up in the "Items for follow-up" listing. The only way I've
found to make this happen is to send the email, then go to Sent items and
then flag the email for follow-up.

Any help would be greatly appreciated.
 
That is by design, to avoid spamming recipients with quick flags and
reminders.

--
Diane Poremsky [MVP - Outlook]
Author, Teach Yourself Outlook 2003 in 24 Hours
Coauthor, OneNote 2003 for Windows (Visual QuickStart Guide)
Author, Google and Other Search Engines (Visual QuickStart Guide)



Join OneNote Tips mailing list: http://www.onenote-tips.net/
 
Thanks for the information. Do you (or anyone) know if there is any way to
accomplish my objective of flagging an email as I compose it so that it shows
up in "For Follow Up" in my "Favorite Folders"?

Larry

Diane Poremsky said:
That is by design, to avoid spamming recipients with quick flags and
reminders.

--
Diane Poremsky [MVP - Outlook]
Author, Teach Yourself Outlook 2003 in 24 Hours
Coauthor, OneNote 2003 for Windows (Visual QuickStart Guide)
Author, Google and Other Search Engines (Visual QuickStart Guide)



Join OneNote Tips mailing list: http://www.onenote-tips.net/


Larry said:
I've noticed that when I flag an email I'm composing for follow-up, it
doesn't show up in the "Items for follow-up" listing. The only way I've
found to make this happen is to send the email, then go to Sent items and
then flag the email for follow-up.

Any help would be greatly appreciated.
 
Use VBA and set a category. Sue Mosher (www.outlookcode.com) wrote a VBA
sample:

Private Sub Application_ItemSend(ByVal Item As Object, Cancel As Boolean)

If Item.Class = olMail And Item.Categories = "green" Then

Item.FlagIcon = olGreenFlagIcon

Item.FlagStatus = olFlagMarked

Item.Categories = ""

End If

End Sub



--
Diane Poremsky [MVP - Outlook]
Author, Teach Yourself Outlook 2003 in 24 Hours
Coauthor, OneNote 2003 for Windows (Visual QuickStart Guide)
Author, Google and Other Search Engines (Visual QuickStart Guide)



Join OneNote Tips mailing list: http://www.onenote-tips.net/


Larry said:
Thanks for the information. Do you (or anyone) know if there is any way to
accomplish my objective of flagging an email as I compose it so that it
shows
up in "For Follow Up" in my "Favorite Folders"?

Larry

Diane Poremsky said:
That is by design, to avoid spamming recipients with quick flags and
reminders.

--
Diane Poremsky [MVP - Outlook]
Author, Teach Yourself Outlook 2003 in 24 Hours
Coauthor, OneNote 2003 for Windows (Visual QuickStart Guide)
Author, Google and Other Search Engines (Visual QuickStart Guide)



Join OneNote Tips mailing list: http://www.onenote-tips.net/


Larry said:
I've noticed that when I flag an email I'm composing for follow-up, it
doesn't show up in the "Items for follow-up" listing. The only way
I've
found to make this happen is to send the email, then go to Sent items
and
then flag the email for follow-up.

Any help would be greatly appreciated.
 
Back
Top