Link to home
Start Free TrialLog in
Avatar of M_Lyons
M_LyonsFlag for United States of America

asked on

Flag an E-Mail as Urgent in C#

I am trying to send an e-mail, and have all the code working great for this.  The only thing I can't get to work is sending the mail flagged as "Urgent"...  Can anyone tell me how I can do this?  The code I am trying is below.  I searched the internet, but none of the results related to what I was looking for...

Thank you very much.  I am using C#.
if (UrgentCheck1.Checked == true)
                {
                    theMailMessage.Priority = MailPriority.High;
                }

Open in new window

ASKER CERTIFIED SOLUTION
Avatar of JimBrandley
JimBrandley
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of M_Lyons

ASKER

I'm sorry for posting this, it appears it was a problem with that particular e-mail client...  It has been resolved by setting the filters appropriately.

Thanks,
Avatar of M_Lyons

ASKER

Thank you for your response.  I am giving you the points, as I appreciate your assistance.  :)