diff --git a/src/QUI/ERP/Accounting/Invoice/Output/OutputProviderInvoice.php b/src/QUI/ERP/Accounting/Invoice/Output/OutputProviderInvoice.php
index ec893609e54231923d8cbd228a82cc8b2f8d826e..5228f014fc8d315c46aa46377cba762193184599 100644
--- a/src/QUI/ERP/Accounting/Invoice/Output/OutputProviderInvoice.php
+++ b/src/QUI/ERP/Accounting/Invoice/Output/OutputProviderInvoice.php
@@ -15,6 +15,7 @@
 use QUI\ERP\Accounting\Invoice\Settings;
 use QUI\ERP\Accounting\Payments\Methods\AdvancePayment\Payment as AdvancePayment;
 use QUI\ERP\Accounting\Payments\Methods\Invoice\Payment as InvoicePayment;
+use QUI\ERP\Customer\Utils as CustomerUtils;
 
 /**
  * Class OutputProvider
@@ -311,7 +312,7 @@ public static function getMailBody($entityId)
 
     /**
      * @param $Invoice
-     * @param $Customer
+     * @param QUI\ERP\User $Customer
      * @return array
      */
     protected static function getInvoiceLocaleVar($Invoice, $Customer): array
@@ -332,6 +333,15 @@ protected static function getInvoiceLocaleVar($Invoice, $Customer): array
         // contact person
         $contactPerson = $Invoice->getAttribute('contact_person');
 
+        if (empty($contactPerson)) {
+            // Fetch contact person from live user (if existing)
+            $ContactPersonAddress = CustomerUtils::getInstance()->getContactPersonAddress($Customer);
+
+            if ($ContactPersonAddress) {
+                $contactPerson = $ContactPersonAddress->getName();
+            }
+        }
+
         if (empty($contactPerson)) {
             $contactPerson = $user;
         }