module:model/EmailSettings

module:model/EmailSettings

new module:model/EmailSettings()

Source:

Constructs a new EmailSettings.
A complex element that allows the sender to override some envelope email setting information. This can be used to override the Reply To email address and name associated with the envelope and to override the BCC email addresses to which an envelope is sent. When the emailSettings information is used for an envelope, it only applies to that envelope. IMPORTANT: The emailSettings information is not returned in the GET for envelope status. Use GET /email_settings to return information about the emailSettings. EmailSettings consists of: * replyEmailAddressOverride - The Reply To email used for the envelope. DocuSign will verify that a correct email format is used, but does not verify that the email is active. Maximum Length: 100 characters. * replyEmailNameOverride - The name associated with the Reply To email address. Maximum Length: 100 characters. * bccEmailAddresses - An array of up to five email addresses to which the envelope is sent to as a BCC email. Only users with canManageAccount setting set to true can use this option. DocuSign verifies that the email format is correct, but does not verify that the email is active. Using this overrides the BCC for Email Archive information setting for this envelope. Maximum Length: 100 characters. Example: if your account has BCC for Email Archive set up for the email address 'archive@mycompany.com' and you send an envelope using the BCC Email Override to send a BCC email to 'salesarchive@mycompany.com', then a copy of the envelope is only sent to the 'salesarchive@mycompany.com' email address.

Members

(inner) bccEmailAddresses :Array.<module:model/BccEmailAddress>

Source:

A list of email addresses that receive a copy of all email communications for an envelope. You can use this for archiving purposes.

Type:

(inner) replyEmailAddressOverride :String

Source:
Type:
  • String

(inner) replyEmailNameOverride :String

Source:
Type:
  • String

Methods

(static) constructFromObject(data, obj) → {module:model/EmailSettings}

Source:

Constructs a EmailSettings from a plain JavaScript object, optionally creating a new instance.
Copies all relevant properties from data to obj if supplied or a new instance if not.

Parameters:
Name Type Description
data Object

The plain JavaScript object bearing properties of interest.

obj module:model/EmailSettings

Optional instance to populate.

Returns:

The populated EmailSettings instance.

Type
module:model/EmailSettings