Table of Contents

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

string

Password

Password for SMTP authentication.

public string Password { get; set; }

Property Value

string

Port

SMTP server port (typically 587 for TLS, 465 for SSL, 25 for unencrypted).

public int Port { get; set; }

Property Value

int

UseSsl

Whether to use SSL/TLS encryption.

public bool UseSsl { get; set; }

Property Value

bool

Username

Username for SMTP authentication (leave empty for no auth).

public string Username { get; set; }

Property Value

string