소스 검색

fixed bug with one line length text message with an attachment not displaying.

Luke Ehresman 25 년 전
부모
커밋
a4c2d2066c
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      functions/smtp.php

+ 1 - 1
functions/smtp.php

@@ -245,7 +245,7 @@
             $body .= "Content-Type: text/plain\r\n";
 
          $body .= "Content-Transfer-Encoding: 8bit\r\n\r\n";
-         $body .= sqStripSlashes($passedBody) . "\r\n";
+         $body .= sqStripSlashes($passedBody) . "\r\n\r\n";
          fputs ($fp, $body);
 
          $attachmentlength = attachFiles($fp);