Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Adding urgent priority to mail set from mailto link

Tags:

email

mailto

I want to add a mailto link on our web page. I want to add a urgent priority to this mail.

like image 715
Donald Avatar asked Sep 18 '08 12:09

Donald


2 Answers

mailto links just doesn't support this feature , sorry.

however, you could use a specific subject and filter it in your inbox

<a href="mailto:[email protected]?subject=Urgent">Send a email</a> 
like image 143
Robit Avatar answered Oct 03 '22 01:10

Robit


You can get your priority, but probably not that way.

Most mail clients honor subject= and body= in the query string of a mailto: link. Some mail clients treat multiple body= attributes as different lines; others only use the last body. Getting to your point, though: I don't think most clients will let you set priority, and it only takes one client that won't do it to make your system unreliable.

The easiest approach is to use mail filters to set priority on inbound mail. The filters should set the priority based on the subject lines, which you can reliably control.

If your mail system's filters can't set priority, try sorting to different mail folders.

like image 36
Garth Kidd Avatar answered Oct 03 '22 02:10

Garth Kidd