![]() |
|
#1
|
|||
|
|||
![]()
I wish to do with outlook the following
1. Read an uread mail 2. If action needs to be taken mark as unread 3. Change the colour to orange for such once read emails. Is it possible? |
#2
|
||||
|
||||
![]()
Easy enough with a macro
Code:
Sub MarkMessage() Dim olMsg As MailItem On Error Resume Next Set olMsg = ActiveExplorer.Selection.Item(1) With olMsg .Categories = "Orange Category" .UnRead = True .Save End With lbl_Exit: Set olMsg = Nothing Exit Sub End Sub
__________________
Graham Mayor - MS MVP (Word) (2002-2019) Visit my web site for more programming tips and ready made processes www.gmayor.com |
#3
|
|||
|
|||
![]()
Hi gmayor
Thanks for the code. But i want to change the font colour to orange instead of existing blue not the category of email. Thanks in advance. |
![]() |
Tags |
change of colour, once read mails, outlook unread mails |
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
![]() |
RealmOfCOnfusion | Outlook | 1 | 06-30-2016 09:55 PM |
Change the colour scheme of a presentation | amv26 | PowerPoint | 1 | 02-18-2016 12:17 PM |
![]() |
lsmcal1984 | Excel Programming | 1 | 11-12-2013 07:41 AM |
![]() |
Davidoff78 | Word VBA | 1 | 06-28-2012 05:23 PM |
CHange colour of footer if a cell changes to red | OTPM | Excel | 0 | 05-26-2011 07:15 AM |