Update the call recording email template

This commit is contained in:
markjcrane
2026-01-16 20:06:38 -07:00
parent 2b08673751
commit f0a67a511d

View File

@@ -10,6 +10,35 @@ if ($domains_processed == 1) {
$array['email_templates'][$x]['template_subcategory'] = 'transcription';
$array['email_templates'][$x]['template_subject'] = "Caller ID \${caller_id_name} <\${caller_id_number}> \${call_duration}";
$array['email_templates'][$x]['template_body'] .= "<html>\n";
$array['email_templates'][$x]['template_body'] .= " <head>\n";
$array['email_templates'][$x]['template_body'] .= " <style>\n";
$array['email_templates'][$x]['template_body'] .= " .message-bubble {\n";
$array['email_templates'][$x]['template_body'] .= " display: table;\n";
$array['email_templates'][$x]['template_body'] .= " padding: 10px;\n";
$array['email_templates'][$x]['template_body'] .= " border: 1px solid;\n";
$array['email_templates'][$x]['template_body'] .= " border-radius: 10px 10px 10px 10px;\n";
$array['email_templates'][$x]['template_body'] .= " border-color: #abefa0;\n";
$array['email_templates'][$x]['template_body'] .= " background: #daffd4;\n";
$array['email_templates'][$x]['template_body'] .= " color: #000000;\n";
$array['email_templates'][$x]['template_body'] .= " margin-bottom: 10px;\n";
$array['email_templates'][$x]['template_body'] .= " clear: both;\n";
$array['email_templates'][$x]['template_body'] .= " }\n";
$array['email_templates'][$x]['template_body'] .= " \n";
$array['email_templates'][$x]['template_body'] .= " .message-bubble-em {\n";
$array['email_templates'][$x]['template_body'] .= " border-color: #abefa0;\n";
$array['email_templates'][$x]['template_body'] .= " background: #daffd4;\n";
$array['email_templates'][$x]['template_body'] .= " background: linear-gradient(180deg, #abefa0 0%, #daffd4 15px);\n";
$array['email_templates'][$x]['template_body'] .= " color: #000000;\n";
$array['email_templates'][$x]['template_body'] .= " }\n";
$array['email_templates'][$x]['template_body'] .= " \n";
$array['email_templates'][$x]['template_body'] .= " .message-bubble-me {\n";
$array['email_templates'][$x]['template_body'] .= " border-color: #a3e1fd;\n";
$array['email_templates'][$x]['template_body'] .= " background: #cbf0ff;\n";
$array['email_templates'][$x]['template_body'] .= " background: linear-gradient(180deg, #cbf0ff calc(100% - 15px), #a3e1fd 100%);\n";
$array['email_templates'][$x]['template_body'] .= " color: #000000;\n";
$array['email_templates'][$x]['template_body'] .= " }\n";
$array['email_templates'][$x]['template_body'] .= " </style>\n";
$array['email_templates'][$x]['template_body'] .= " </head>\n";
$array['email_templates'][$x]['template_body'] .= " <body>\n";
$array['email_templates'][$x]['template_body'] .= " Caller ID \${caller_id_name} <a href=\"tel:\${caller_id_number}\">\${caller_id_number}</a><br />\n";
$array['email_templates'][$x]['template_body'] .= " <br />\n";