diff --git a/assets/email/plain.html b/assets/email/plain.html index 4d9c1001..98f96584 100644 --- a/assets/email/plain.html +++ b/assets/email/plain.html @@ -1,5 +1,3 @@ -

-

+
 {{ message }}
-    
-

+
diff --git a/packages/core/src/error.ts b/packages/core/src/error.ts index f163dffd..7e0ea967 100644 --- a/packages/core/src/error.ts +++ b/packages/core/src/error.ts @@ -101,7 +101,7 @@ export class Err extends Error { toString() { return `Time: ${this.time.toISOString()} Error Code: ${this.code} -Error Message: ${this.message}${this.originalError ? `\nOriginal Error Message: ${this.originalError.message}` : ""} +Error Message: ${this.message} Stack Trace:\n${this.originalError ? this.originalError.stack : this.stack} `; }