Watermark in the reply mail

Navyaa
Tera Expert

Hi All,

I couldn't add the watermark in the reply mail.

I am getting an email notification with "Approve all" and "Reject all" links along with the watermark, onclick of the links a new email is created but with no watermark.

Can anyone please suggest how to include the watermark in the new email.

The below screenshot is the from the mail script from where the links are generated.

Can anyone please help me on how to input the watermark in the new mail.

find_real_file.png

find_real_file.png

6 REPLIES 6

Upender Kumar
Mega Sage
template.print('<a title="click here" href="mailto:YOURINSTANCEEMAIL@service-now.com?SUBJECT=Approve&amp;body='+ (email.watermark)+ '">Click here</a>');

this one worked like a charm! 
I pimped it a bit to fit our requierement but for future people that want to get button out of this this is what i did

var number = requested_item.number.getDisplayValue();
        var re = 'Re:'
        var mailtoApprove = 'mailto:Youremail@service-now.com?subject=' + re + number + ' - approve&amp;body=' + encodeURIComponent(email.watermark);
        var mailtoDeny = 'mailto:YourEmail@service-now.com?subject=' + re + number + ' - reject&amp;body=' + encodeURIComponent(email.watermark);

and then 

template.print('<td style="text-align: left;"><a href="' + mailtoApprove + '" style="' + backgroundcolorappro + borderappro + color + fontSize + fontFamily2 + textDecoration + border + display + padding + '; min-width: 80px; text-align: center;">Approuver</a></td>');
        template.print('<td style="padding: 5px; text-align: left;"><a href="' + mailtoDeny + '" style="' + backgroundColordeny + borderdeny + color + fontSize + fontFamily2 + textDecoration + border + display + padding + '; min-width: 80px; text-align: center;">Refuser</a></td>');