fixed bug in sending messages. It wasn't putting a blank line between the
authorlkehresman <lkehresman@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Fri, 10 Mar 2000 00:21:30 +0000 (00:21 +0000)
committerlkehresman <lkehresman@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Fri, 10 Mar 2000 00:21:30 +0000 (00:21 +0000)
header and the body.

git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@296 7612ce4b-ef26-0410-bec9-ea0150e637f0

functions/smtp.php

index 7beb63ce452460b64e2ad5abdad44f42bbb5deb0..e12b9914430a88ab50f9ac2a91f98e7468f8cf9d 100644 (file)
          fputs($fp, "Content-Type: text/plain; charset=ISO-8859-1\n");
          fputs($fp, "Content-Transfer-Encoding: 8bit\n");
       }
+      fputs ($fp, "\n");
    }
 
    // Send the body
         fputs ($fp, "\n--".mimeBoundary()."--\n");
      } else {
        fputs ($fp, stripslashes($body) . "\n");
+       fputs ($fp, "\n");
      }
    }