feat: add custom email headers (#260)
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "usesend-js",
|
||||
"version": "1.5.3",
|
||||
"version": "1.5.4",
|
||||
"description": "",
|
||||
"main": "./dist/index.js",
|
||||
"module": "./dist/index.mjs",
|
||||
|
||||
Vendored
+8
@@ -535,6 +535,10 @@ export interface paths {
|
||||
bcc?: string | string[];
|
||||
text?: string | null;
|
||||
html?: string | null;
|
||||
/** @description Custom headers to included with the emails */
|
||||
headers?: {
|
||||
[key: string]: string;
|
||||
};
|
||||
attachments?: {
|
||||
filename: string;
|
||||
content: string;
|
||||
@@ -598,6 +602,10 @@ export interface paths {
|
||||
bcc?: string | string[];
|
||||
text?: string | null;
|
||||
html?: string | null;
|
||||
/** @description Custom headers to included with the emails */
|
||||
headers?: {
|
||||
[key: string]: string;
|
||||
};
|
||||
attachments?: {
|
||||
filename: string;
|
||||
content: string;
|
||||
|
||||
Reference in New Issue
Block a user