Voicemail Emails
Has anyone been able to make an html template for the voicemail emails. We would love to customize them beyond just plain text. We have dome some Google searches and have not been able to come up with much.
I believe that Switchvox has customized the voicemail email into html. Has anyone ever tried this? Thanks,
/Josh
Danilo Dionisi said:
Jul 20, 12 at 4:31 pmHave you tried to insert the HTML code directly into the body?
Il 20/07/12 19:53, Josh Hopkins ha scritto:
Josh Hopkins said:
Jul 20, 12 at 4:35 pmYes and you just get html code in the email rather than the html format.
From: asterisk-users-bounces@lists.digium.com [mailto:asterisk-users-bounces@lists.digium.com] On Behalf Of Danilo Dionisi Sent: Friday, July 20, 2012 3:31 PM
To: Asterisk Users Mailing List – Non-Commercial Discussion Subject: Re: [asterisk-users] Voicemail Emails
Have you tried to insert the HTML code directly into the body?
Il 20/07/12 19:53, Josh Hopkins ha scritto:
Has anyone been able to make an html template for the voicemail emails. We would love to customize them beyond just plain text. We have dome some Google searches and have not been able to come up with much.
I believe that Switchvox has customized the voicemail email into html. Has anyone ever tried this? Thanks,
/Josh
Kevin P. said:
Jul 20, 12 at 4:43 pmapp_voicemail does not send MIME-encapsulated emails, it sends raw email. Unless you could add a Content-Type header to the message (which app_voicemail doesn’t allow you to do), the email client that receives the HTML is going to treat it as plain text, which is what you saw.
Danny Nicholas said:
Jul 20, 12 at 4:44 pmYou can change voicemail.conf to use a delivery option other than sendmail. Other than that, show us your body line from voicemail.conf
From: asterisk-users-bounces@lists.digium.com
[mailto:asterisk-users-bounces@lists.digium.com] On Behalf Of Josh Hopkins Sent: Friday, July 20, 2012 4:36 PM
To: Asterisk Users Mailing List – Non-Commercial Discussion Subject: Re: [asterisk-users] Voicemail Emails
Yes and you just get html code in the email rather than the html format.
From: asterisk-users-bounces@lists.digium.com
[mailto:asterisk-users-bounces@lists.digium.com] On Behalf Of Danilo Dionisi Sent: Friday, July 20, 2012 3:31 PM
To: Asterisk Users Mailing List – Non-Commercial Discussion Subject: Re: [asterisk-users] Voicemail Emails
Have you tried to insert the HTML code directly into the body?
Il 20/07/12 19:53, Josh Hopkins ha scritto:
Has anyone been able to make an html template for the voicemail emails. We would love to customize them beyond just plain text. We have dome some Google searches and have not been able to come up with much.
I believe that Switchvox has customized the voicemail email into html. Has anyone ever tried this? Thanks,
/Josh
Warren Selby said:
Jul 20, 12 at 4:48 pmWhat about changing ‘mailcmd=’ to a shell script that rewrites the email in the format you want before sending it to sendmail?
–
Thanks,
–Warren Selby, dCAP
http://www.SelbyTech.com < http://www.selbytech.com>
Kevin P. said:
Jul 20, 12 at 4:55 pmThat is most likely the best way to accomplish it; it would need to receive the already-composed email on stdin, then parse it, modify it, and regenerate it before sending it to the real mailer. This could be done using standard email libraries in many scripting languages.