aboutsummaryrefslogtreecommitdiffstats
path: root/config/sm.php
diff options
context:
space:
mode:
Diffstat (limited to 'config/sm.php')
-rw-r--r--config/sm.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/config/sm.php b/config/sm.php
index e2c56fc4..2e1cc4a0 100644
--- a/config/sm.php
+++ b/config/sm.php
@@ -23,6 +23,7 @@ if($options['s'] <> "") {
$in = file("php://stdin");
foreach($in as $line){
+ $line = trim($line);
if ( (substr($line, 0, 6) == "From: ")
|| (substr($line, 0, 6) == "Date: ")
|| (substr($line, 0, 4) == "To: "))
@@ -31,7 +32,7 @@ foreach($in as $line){
$subject = substr($line, 9);
continue;
}
- $message .= "$line";
+ $message .= "$line\n";
}
if (!empty($subject))