The OpenD Programming Language

RelayInfo

Credentials for a SMTP relay, as passed to std.net.curl.SMTP.

Members

Variables

password
string password;
server
string server;

Should be as a url, such as smtp://example.com or smtps://example.com. You normally want smtp:// - even if you want TLS encryption, smtp uses STARTTLS so it gets that. smtps will only work if the server supports tls from the start, which is not always the case.

username
string username;

Meta