We are using PBXinAFlash on CentOS, Asterisk 13, on local hardware (intel nuc).
We use Vitelity for inbound with Caller ID sent in by them.. so we see the CNAM info they provide.
The voicemail to email messages look like below, but I am trying to get it to say both Name and Number, so we can call them back without having to lookup the number.
"Just wanted to let you know you were just left a 0:25 long message (number 37)
in mailbox 700 from WIRELESS CALLER, on Wednesday, June 29, 2016 at 02:33:45 PM so you might want to check it when you get a chance. Thanks!
--Asterisk"
Here is my config files:
vm_email_inc
We use Vitelity for inbound with Caller ID sent in by them.. so we see the CNAM info they provide.
The voicemail to email messages look like below, but I am trying to get it to say both Name and Number, so we can call them back without having to lookup the number.
"Just wanted to let you know you were just left a 0:25 long message (number 37)
in mailbox 700 from WIRELESS CALLER, on Wednesday, June 29, 2016 at 02:33:45 PM so you might want to check it when you get a chance. Thanks!
--Asterisk"
Here is my config files:
vm_email_inc
Code:
; To be able to localize text in the email by using utf-8 characters you can remove the remark on the next line so that the charset will be utf-8
; charset=utf-8
; Change the email body, variables: VM_NAME, VM_DUR, VM_MSGNUM, VM_MAILBOX, VM_CALLERID, VM_DATE
emailbody=${VM_NAME},\n\nThere is a new voicemail in mailbox ${VM_MAILBOX}:\n\n\tFrom:\t${VM_CALLERID}\n\tLength:\t${VM_DUR} seconds\n\tDate:\t${VM_DATE}\n\nDial *98 to access your voicemail by phone.\n${VM_NAME}, ${VM_DUR}, ${VM_MSGNUM}, ${VM_MAILBOX}, ${VM_CALLERID}, ${VM_DATE}\n
[\code]