From: Mark Wells <mark@freeside.biz>
Date: Fri, 17 Apr 2015 04:54:54 +0000 (-0700)
Subject: don't try to produce plain text quotations without a template, #34460, from #31786
X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=commitdiff_plain;h=d0295833c7e240698bfd7b3a9bddf2024a602253;hp=b37cafd2acd4ab2c38b44bc4d8ebde76936ef6bb

don't try to produce plain text quotations without a template, #34460, from #31786
---

diff --git a/FS/FS/Template_Mixin.pm b/FS/FS/Template_Mixin.pm
index c5a416b51..9e43c3c5c 100644
--- a/FS/FS/Template_Mixin.pm
+++ b/FS/FS/Template_Mixin.pm
@@ -2093,11 +2093,20 @@ sub generate_email {
 
   if (!@text) {
 
-    warn "$me generating plain text invoice"
-      if $DEBUG;
+    if ( $conf->config($tc.'template') ) {
+
+      warn "$me generating plain text invoice"
+        if $DEBUG;
 
-    # 'print_text' argument is no longer used
-    @text = $self->print_text(\%args);
+      # 'print_text' argument is no longer used
+      @text = $self->print_text(\%args);
+
+    } else {
+
+      warn "$me no plain text version exists; sending empty message body"
+        if $DEBUG;
+
+    }
 
   }