Update v_mailto.php

For the include for email transcription change the file name from email_translation.php to email_transcription.php.
This commit is contained in:
FusionPBX 2016-07-13 18:01:40 -06:00 committed by GitHub
parent 1834be5042
commit bbe1705019
1 changed files with 5 additions and 6 deletions

View File

@ -79,9 +79,8 @@
//includes
require('resources/pop3/mime_parser.php');
require('resources/pop3/rfc822_addresses.php');
if (file_exists($_SERVER["PROJECT_ROOT"]."/app/emails/email_translation.php")) {
require_once($_SERVER["PROJECT_ROOT"]."/app/emails/email_translation.php");
if (file_exists($_SERVER["PROJECT_ROOT"]."/app/emails/email_transcription.php")) {
require_once($_SERVER["PROJECT_ROOT"]."/app/emails/email_transcription.php");
}
//parse the email message
@ -287,8 +286,8 @@
//add an attachment
$mail->AddStringAttachment($parts_array["Body"],$file,$encoding,$mime_type);
if (function_exists(get_transcription)) {
$attachments_array=$mail->GetAttachments();
$transcription=get_transcription($attachments_array[0]);
$attachments_array = $mail->GetAttachments();
$transcription = get_transcription($attachments_array[0]);
echo "Transcription: " . $transcription;
} else {
$transcription = '';
@ -394,4 +393,4 @@ fwrite($fp, $content);
fclose($fp);
*/
?>
?>