You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/** Sender email address from a verified domain. */
40
+
senderAddress: string;
41
+
/** Email content to be sent. */
42
+
content: EmailContent;
43
+
/** Recipients for the email. */
44
+
recipients: EmailRecipients;
45
+
/** List of attachments. Please note that we limit the total size of an email request (which includes attachments) to 10MB. */
46
+
attachments?: EmailAttachment[];
47
+
/** Email addresses where recipients' replies will be sent to. */
48
+
replyTo?: EmailAddress[];
49
+
/** Indicates whether user engagement tracking should be disabled for this request if the resource-level user engagement tracking setting was already enabled in the control plane. */
50
+
userEngagementTrackingDisabled?: boolean;
51
+
}
52
+
34
53
/** Optional parameters for the beginSend method. */
0 commit comments