Class EmailProviderCredentials
- Namespace
- Auth0.ManagementApi.Models
- Assembly
- Auth0.ManagementApi.dll
Credentials for an email provider.
public class EmailProviderCredentials
- Inheritance
-
EmailProviderCredentials
- Inherited Members
Properties
AccessKeyId
Gets or sets the Access Key ID.
[JsonProperty("accessKeyId")]
public string AccessKeyId { get; set; }
Property Value
Remarks
Applicable only to the AWS provider.
ApiKey
Gets or sets the API Key.
[JsonProperty("api_key")]
public string ApiKey { get; set; }
Property Value
Remarks
Applicable only to the SendGrid and Mandrill providers.
ApiUser
Gets or sets the API User.
[JsonProperty("api_user")]
public string ApiUser { get; set; }
Property Value
Remarks
Applicable only to the SendGrid provider.
Region
Gets or sets the default AWS region.
[JsonProperty("region")]
public string Region { get; set; }
Property Value
Remarks
Applicable only to the AWS provider.
SecretAccessKey
Gets or sets the Secret Access Key.
[JsonProperty("secretAccessKey")]
public string SecretAccessKey { get; set; }
Property Value
Remarks
Applicable only to the AWS provider.
SmtpHost
Gets or sets the host name or IP address of the SMTP server
[JsonProperty("smtp_host")]
public string SmtpHost { get; set; }
Property Value
SmtpPassword
Gets or sets the password for the SMTP server
[JsonProperty("smtp_pass")]
public string SmtpPassword { get; set; }
Property Value
SmtpPort
Gets or sets the port used by the SMTP server
[JsonProperty("smtp_port")]
public int? SmtpPort { get; set; }
Property Value
- int?
Remarks
Common ports include 25, 465, and 587. Please avoid using port 25 if you can, since many providers have limitations on this port.
SmtpUsername
Gets or sets the username for the SMTP server
[JsonProperty("smtp_user")]
public string SmtpUsername { get; set; }