Colors and erasure of color assignments
I accidentally assigned a color to an email in my inbox. I want to erase that color and leave the inbox selection without any color. How do I do this? Using Mac Sonoma OS.
Mac Studio (2023)
I accidentally assigned a color to an email in my inbox. I want to erase that color and leave the inbox selection without any color. How do I do this? Using Mac Sonoma OS.
Mac Studio (2023)
I've never found a way in the GUI to set the background color.
You can select the messages you want to unset and run this AppleScript in Script Editor:
tell application "Mail"
repeat with aMessage in selection as list
set background color of aMessage to none
end repeat
end tell
I've never found a way in the GUI to set the background color.
You can select the messages you want to unset and run this AppleScript in Script Editor:
tell application "Mail"
repeat with aMessage in selection as list
set background color of aMessage to none
end repeat
end tell
It's probably the same as it was in Ventura: Control (right) - click on the email and in the dropdown contextual menu click on the flag that has the box around it to remove it.
I’m NOT referring to a flagged email. I’m talking about using “COLORS to highlight a subject in the Email Inbox. I want to be able to undo a color selection back to the original background color of the inbox page - no color at all.
Colors and erasure of color assignments