Email client only supports one email client template per tableIssue <!-- div.margin{ padding: 10px 40px 40px 30px; } table.tocTable{ border: 1px solid; border-color:#E0E0E0; background-color: rgb(245, 245, 245); padding-top: .6em; padding-bottom: .6em; padding-left: .9em; padding-right: .6em; } table.noteTable{ border:1px solid; border-color:#E0E0E0; background-color: rgb(245, 245, 245); width: 100%; border-spacing:2; } table.internaltable { white-space:nowrap; text-align:left; border-width: 1px; border-collapse: collapse; font-size:14px; width: 85%; } table.internaltable th { border-width: 1px; padding: 5px; border-style: solid; border-color: rgb(245, 245, 245); background-color: rgb(245, 245, 245); } table.internaltable td { border-width: 1px; padding: 5px; border-style: solid; border-color: #E0E0E0; color: #000000; } table tr td { padding: 15px; } .title { color: #D1232B; font-weight:normal; font-size:28px; } h1{ color: #D1232B; font-weight:normal; font-size:21px; margin-bottom:-5px } h2{ color: #646464; font-weight:bold; font-size:18px; } h3{ color: #000000; font-weight:BOLD; font-size:16px; text-decoration:underline; } h4{ color: #646464; font-weight:BOLD; font-size:15px; text-decoration:; } h5{ color: #000000; font-weight:BOLD; font-size:13px; text-decoration:; } h6{ color: #000000; font-weight:BOLD; font-size:14px; text-decoration:; } hr{ border-top-width: 1px; border-top-style: solid; border-top-color: #cccccc; } ul { list-style: disc outside none; margin-left: 0; } li { padding-left: 1em; } --> Overview The email client functionality only supports one email client template per table even if there is an option to create more than one email client templates per table. Email client only supports one email client template per table Regardless of how many email client templates have been set up for a table only one email client template is supported and will be used. The first email client template created would be the one that will always be used. If there are other processes that manually call different email client templates only the first email client template that was first created is applied. Example 1) Create two different email client templates for incident table: Name: template1Name: template2 2) Through a script in an UI Action manually call template2: var url = 'email_client.do?sysparm_table=incidents&sysparm_sys_id='+<sys_id>+'&sysparm_target=incident&sys_uniqueValue='+i<sys_id>+'&email_client_template=template2&sys_row=0&sysparm_encoded_record=&sysparm_domain_restore=false&sysparm_stack=no'; popupOpenEmailClient(url); Actual behavior: Even though template2 is specified to be opened (from the URL parameter "email_client_template=template2") the email client would still open template1 because this was the first email client template that was created. Additional Information The email client