@travetto/email 3.1.9 → 3.1.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/service.ts +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@travetto/email",
3
- "version": "3.1.9",
3
+ "version": "3.1.10",
4
4
  "description": "Email transmission module.",
5
5
  "keywords": [
6
6
  "email",
package/src/service.ts CHANGED
@@ -86,7 +86,7 @@ export class MailService {
86
86
  // eslint-disable-next-line @typescript-eslint/consistent-type-assertions
87
87
  const compiled = await this.templateMessage(keyOrMessage as Compiled, context);
88
88
 
89
- const final = { ...base, ...message, ...compiled };
89
+ const final = { ...base, ...message, ...compiled, context };
90
90
 
91
91
  // Extract images
92
92
  if (compiled.html) {