Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 744 Bytes

SmtpCredentialsPayload.md

File metadata and controls

24 lines (18 loc) · 744 Bytes

ElasticEmail::SmtpCredentialsPayload

Properties

Name Type Description Notes
name String Name of the Credential for ease of reference. It must be a valid email address.
expires Time Date this SmtpCredential expires. [optional]
restrict_access_to_ip_range Array<String> Which IPs can use this SmtpCredential [optional]
subaccount String Email of the subaccount for which this SmtpCredential should be created [optional]

Example

require 'ElasticEmail'

instance = ElasticEmail::SmtpCredentialsPayload.new(
  name: null,
  expires: null,
  restrict_access_to_ip_range: null,
  subaccount: null
)