3

I am using PHP with the Zend-Framework to create emails. How can I mark the email as important? Outlook will show a red "!" if it is marked right.

Charles
  • 50,943
  • 13
  • 104
  • 142
user63371
  • 539
  • 4
  • 7
  • 17

2 Answers2

5

I am not familiar with Zend, but you are looking for these headers:

X-Priority: 1 
X-MSMail-Priority: High
Importance: High

According to this page Outlook sets all these headers when you send an Important email, but I suspect that the first one would suffice.

Paolo Bergantino
  • 480,997
  • 81
  • 517
  • 436
3

The way to use with Zend Framework is:

$mail = new Zend_Mail('UTF-8');
$mail->addHeader('X-Priority', '1');
$mail->addHeader('X-MSMail-Priority', 'High');
$mail->addHeader('Importance', 'High');
...
Nacho Badia
  • 136
  • 2
  • 10