voicemail.tpl 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. From: "${voicemail_caller_id_name}" <${voicemail_caller_id_number}@${voicemail_domain}>
  2. Date: ${RFC2822_DATE}
  3. To: ${voicemail_email}
  4. Subject: Voicemail from "${voicemail_caller_id_name}" <${voicemail_caller_id_number}> ${voicemail_message_len}
  5. X-Priority: ${voicemail_priority}
  6. X-Mailer: FreeSWITCH
  7. Content-Type: multipart/alternative;
  8. boundary="000XXX000"
  9. --000XXX000
  10. Content-Type: text/plain; charset=ISO-8859-1; Format=Flowed
  11. Content-Disposition: inline
  12. Content-Transfer-Encoding: 7bit
  13. Created: ${voicemail_time}
  14. From: "${voicemail_caller_id_name}" <${voicemail_caller_id_number}>
  15. Duration: ${voicemail_message_len}
  16. Account: ${voicemail_account}@${voicemail_domain}
  17. --000XXX000
  18. Content-Type: text/html; charset=ISO-8859-1
  19. Content-Disposition: inline
  20. Content-Transfer-Encoding: 7bit
  21. <html xmlns="http://www.w3.org/1999/xhtml">
  22. <head>
  23. <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
  24. <title>Voicemail from "${voicemail_caller_id_name}" <${voicemail_caller_id_number}> ${voicemail_message_len}</title>
  25. <meta content="text/html; charset=iso-8859-1" http-equiv="content-type"/>
  26. </head>
  27. <body>
  28. <font face=arial>
  29. <b>Message From "${voicemail_caller_id_name}" <A HREF="tel:${voicemail_caller_id_number}">${voicemail_caller_id_number}</A></b><br>
  30. <hr noshade size=1>
  31. Created: ${voicemail_time}<br>
  32. Duration: ${voicemail_message_len}<br>
  33. Account: ${voicemail_account}@${voicemail_domain}<br>
  34. </font>
  35. </body>
  36. </html>
  37. --000XXX000--