From d8283c26ca6bb57fc05be8f2b3b4d7c86d7f0e7a Mon Sep 17 00:00:00 2001 From: FusionPBX Date: Tue, 6 May 2025 20:22:10 -0600 Subject: [PATCH] Inbound fax send domain_uuid to the email queue Needed to get per domain smtp settings --- secure/fax_to_email.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/secure/fax_to_email.php b/secure/fax_to_email.php index 50e3f282ac..b92322a452 100644 --- a/secure/fax_to_email.php +++ b/secure/fax_to_email.php @@ -519,7 +519,7 @@ if (!function_exists('fax_split_dtmf')) { } //send the email - $email = new email; + $email = new email(["domain_uuid" => $domain_uuid]); $email->recipients = $fax_email; $email->subject = $email_subject; $email->body = $email_body; @@ -588,4 +588,4 @@ function shutdown() { } } -?> \ No newline at end of file +?>