I want to set the mail priority using SPUtility.SendMail()
I know I can do it with
MailMessage myMail = new MailMessage();
myMail.From = "from@microsoft.com";
myMail.To = "to@microsoft.com";
myMail.Subject = "UtilMailMessage001";
myMail.Priority = MailPriority.Low;
But my data center folks want me to use SPUtility.SendMail(). Is it possbile to set the priority with SPUtility.SendMail()?