Explorar el Código

Fix missing CRLF when building up message

Thomas Dy hace 2 años
padre
commit
e1bf3e830e
Se han modificado 1 ficheros con 1 adiciones y 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";
     }
   }