Explorar o código

Fix missing CRLF when building up message

Thomas Dy %!s(int64=2) %!d(string=hai) anos
pai
achega
e1bf3e830e
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      smtp.ts

+ 1 - 1
smtp.ts

@@ -139,7 +139,7 @@ export class Session {
       this.sender = "";
       this.data = "";
     } else {
-      this.data += data;
+      this.data += data + "\r\n";
     }
   }