@budibase/worker 3.30.6 → 3.31.1

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.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@budibase/worker",
3
3
  "email": "hi@budibase.com",
4
- "version": "3.30.6",
4
+ "version": "3.31.1",
5
5
  "description": "Budibase background service",
6
6
  "main": "src/index.ts",
7
7
  "repository": {
@@ -109,5 +109,5 @@
109
109
  }
110
110
  }
111
111
  },
112
- "gitHead": "6d2d5bab2cce9bedc76be7481e8222311967f107"
112
+ "gitHead": "9de72ce9dd1c290eb3d16fd22693192923f46f06"
113
113
  }
@@ -19,6 +19,7 @@ export async function sendEmail(
19
19
  subject,
20
20
  cc,
21
21
  bcc,
22
+ replyTo,
22
23
  automation,
23
24
  invite,
24
25
  attachments,
@@ -38,6 +39,7 @@ export async function sendEmail(
38
39
  subject,
39
40
  cc,
40
41
  bcc,
42
+ replyTo,
41
43
  automation,
42
44
  invite,
43
45
  attachments,
@@ -183,6 +183,7 @@ export async function sendEmail(
183
183
  to: email,
184
184
  cc: opts?.cc,
185
185
  bcc: opts?.bcc,
186
+ replyTo: opts?.replyTo,
186
187
  }
187
188
 
188
189
  if (opts?.subject || config?.subject) {