emailr 1.7.1 → 1.7.2
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/dist/index.d.mts +2 -0
- package/dist/index.d.ts +2 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -165,6 +165,7 @@ interface ReplyTo {
|
|
|
165
165
|
interface SendEmailRequest {
|
|
166
166
|
to: string | string[];
|
|
167
167
|
from?: string;
|
|
168
|
+
from_name?: string;
|
|
168
169
|
cc?: string | string[];
|
|
169
170
|
bcc?: string | string[];
|
|
170
171
|
subject?: string;
|
|
@@ -178,6 +179,7 @@ interface SendEmailRequest {
|
|
|
178
179
|
reply_to_email?: string;
|
|
179
180
|
preview_text?: string;
|
|
180
181
|
scheduled_at?: string;
|
|
182
|
+
inbox_id?: string;
|
|
181
183
|
}
|
|
182
184
|
interface SendEmailResponse {
|
|
183
185
|
success: boolean;
|
package/dist/index.d.ts
CHANGED
|
@@ -165,6 +165,7 @@ interface ReplyTo {
|
|
|
165
165
|
interface SendEmailRequest {
|
|
166
166
|
to: string | string[];
|
|
167
167
|
from?: string;
|
|
168
|
+
from_name?: string;
|
|
168
169
|
cc?: string | string[];
|
|
169
170
|
bcc?: string | string[];
|
|
170
171
|
subject?: string;
|
|
@@ -178,6 +179,7 @@ interface SendEmailRequest {
|
|
|
178
179
|
reply_to_email?: string;
|
|
179
180
|
preview_text?: string;
|
|
180
181
|
scheduled_at?: string;
|
|
182
|
+
inbox_id?: string;
|
|
181
183
|
}
|
|
182
184
|
interface SendEmailResponse {
|
|
183
185
|
success: boolean;
|