Join the #BuildWithBuildAgent Challenge! Get recognized, earn exclusive swag, and inspire the ServiceNow Community with what you can build using Build Agent.  Join the Challenge.

How to add button in email script

avinashdubey103
Tera Guru

Hi i AM TRYING TO ADD A BUTTON IN EMAIL SCRIPT AND  then adding a email script on the button 

but it is not working 

the button should be clickabale

 

  <div style='height:30px;'>&nbsp;</div> <div><span style='color: #324450;'><button style='color: #324450;'> ${mailto:mailto.approval.accept}</button>&nbsp;&nbsp;&nbsp;&nbsp;<button style='color: #324450;'>${mailto:mailto.rejection.accept}</button></span></div>  
2 REPLIES 2

Simran Gadodiya
Mega Sage

Hi @avinashdubey103 

 

In notification script you can add html as below

template.print('<a href="LINK HERE" >button</a>');

 

email notification script documentation for reference:

https://developer.servicenow.com/dev.do#!/learn/learning-plans/utah/new_to_servicenow/app_store_lear...

 

Thanks.
Mark This helpful and correct if it helps you.

shyamkumar VK
Kilo Patron

@avinashdubey103 , 

 

Try this 

<div style='height:30px;'>&nbsp;</div>
<div>
    <span style='color: #324450;'>
        <a href='mailto:mailto.approval.accept'><button style='color: #324450;'>Accept</button></a>
        &nbsp;&nbsp;&nbsp;&nbsp;
        <a href='mailto:mailto.rejection.accept'><button style='color: #324450;'>Reject</button></a>
    </span>
</div>

Also Refer to this Article 

https://www.servicenow.com/community/itsm-blog/approve-reject-button-in-approval-notification/ba-p/2....

 

Regards,

Shyamkumar

 

Please mark this as helpful and accept as a solution if this resolves your Ask.
Regards,

Shyamkumar