Class SmtpProviderSettings
- Namespace
- Ando.Server.Configuration
- Assembly
- Ando.Server.dll
SMTP-specific settings.
public class SmtpProviderSettings
- Inheritance
-
SmtpProviderSettings
- Inherited Members
Properties
Host
SMTP server hostname.
public string Host { get; set; }
Property Value
Password
Password for SMTP authentication.
public string Password { get; set; }
Property Value
Port
SMTP server port (typically 587 for TLS, 465 for SSL, 25 for unencrypted).
public int Port { get; set; }
Property Value
UseSsl
Whether to use SSL/TLS encryption.
public bool UseSsl { get; set; }
Property Value
Username
Username for SMTP authentication (leave empty for no auth).
public string Username { get; set; }