Question

Sending Email with high importance


Badge

Is there a way to specify that the email needs is high priority ?


4 replies

Userlevel 4
Badge +30

Hi @vikram

Are you talking to send email in FME Desktop with transformer Emailer? Or a Job executed in FME Server?

Thanks,

Danilo

Userlevel 4

If you need to filter or flag certain mails in your email client, I personally prefer using certain keywords in the subject line, e.g. "FAILED" or "SUCCESS". It's then easy to configure your email client to treat those mails differently.

Badge

@danilo_fmeThis is for FME Desktop.

@david_r This is notify the users that this email is of high importance.

Badge +22

The current emailer transformer does not support that functionality (maybe suggest it as an idea?).

 

 

The deprecated custom transformer PythonEmailer can probably be modified to do so by adding

 

msg['X-Priority'] = '1' at line 26. But I haven't tested that so YMMV.

Reply