How to set below email notification alignment - center ?

Rajesh98
ServiceNow Employee
ServiceNow Employee

i want to set notification format like below screenshot

image.png
 
 
Below is the html message script:
 

We'd love to hear from you.

Please complete this 2 minute survey.

 

Hi ${caller_id.first_name},

 

As part of our efforts to ensure a consistent, high level of service delivery, we would like your feedback about the incident below.

  

Incident #: ${number} 

Incident Description: ${description}

Incident Resolution: ${close_notes}

 

Take Survey Now

 

We value your honest feedback and will ensure that your response is treated confidentially. Thank you in advance for your time.

 

 
 
 
 
10 REPLIES 10

Saurav Maiti
Mega Expert

Use <center></center> it will work

 

 

<center>

We'd love to hear from you.

Please complete this 2 minute survey.

 

Hi ${caller_id.first_name},

 

As part of our efforts to ensure a consistent, high level of service delivery, we would like your feedback about the incident below.

  

Incident #: ${number} 

Incident Description: ${description}

Incident Resolution: ${close_notes}

 

Take Survey Now

 

We value your honest feedback and will ensure that your response is treated confidentially. Thank you in advance for your time.

</center>

 

If my answer helped you in any way, please then mark it as helpful/Correct

 

Hi,

 

Its not working. i have written above script and it shows preview notification like this

 

<center>

We'd love to hear from you.

Please complete this 2 minute survey.

 

Hi ,

 

As part of our efforts to ensure a consistent, high level of service delivery, we would like your feedback about the incident below.

  

Incident #:  

Incident Description: 

Incident Resolution: 

 

Take Survey Now

 

We value your honest feedback and will ensure that your response is treated confidentially. Thank you in advance for your time.

</center>

Use this

 

<table border="1"><th colspan="4" style="text-align:center">

We'd love to hear from you.

Please complete this 2 minute survey.

 

Hi ,

 

As part of our efforts to ensure a consistent, high level of service delivery, we would like your feedback about the incident below.

  

Incident #:  

Incident Description: 

Incident Resolution: 

 

Take Survey Now

 

We value your honest feedback and will ensure that your response is treated confidentially. Thank you in advance for your time.

 

</table>

Sorry use this

 

<table border="1"><tr style="text-align:center">

We'd love to hear from you.

Please complete this 2 minute survey.

 

Hi ,

 

As part of our efforts to ensure a consistent, high level of service delivery, we would like your feedback about the incident below.

  

Incident #:  

Incident Description: 

Incident Resolution: 

 

Take Survey Now

 

We value your honest feedback and will ensure that your response is treated confidentially. Thank you in advance for your time.

 </tr>

</table>