Qore SmtpClient Module Reference 2.0
|
class for SMTP connections; returns an object of class SmtpClient for sending emails More...
#include <SmtpClient.qm.dox.h>
Public Member Methods | |
constructor (string name, string description, string url, hash< auto > attributes={}, hash< auto > options={}) | |
creates the SmtpConnection connection object More... | |
DataProvider::AbstractDataProvider | getDataProvider () |
returns an SmtpClientDataProvider object for this connection More... | |
*hash< auto > | getRuntimeOptions () |
returns runtime options More... | |
string | getType () |
returns "smtp" | |
bool | hasDataProvider () |
returns True, as the connection returns a data provider with the getDataProvider() method More... | |
Qore::AbstractPollOperation | startPollConnect () |
Called to start a non-blocking polling ping operation on the remote SMTP server. More... | |
bool | supportsPollingApi () |
returns True, since this connection type supports the Qore Socket-based polling API More... | |
Public Attributes | |
const | ConnectionScheme |
Connection entry info. | |
Private Member Methods | |
hash< ConnectionSchemeInfo > | getConnectionSchemeInfoImpl () |
Returns the ConnectionSchemeInfo hash for this object. | |
SmtpClient | getImpl (bool connect=True, *hash< auto > rtopts) |
returns an SmtpClient object More... | |
setChildCapabilities () | |
Sets child data provider capabilities. | |
class for SMTP connections; returns an object of class SmtpClient for sending emails
supports the following runtime options in getImpl() for connection logging:
"log"
: a closure accepting a single string for logging"dbglog"
: a closure taking a single string for detailed technical connection loggingSmtpClient::SmtpConnection::constructor | ( | string | name, |
string | description, | ||
string | url, | ||
hash< auto > | attributes = {} , |
||
hash< auto > | options = {} |
||
) |
creates the SmtpConnection connection object
name | the name of the connection |
description | connection description |
url | connection URL (potentially with password info) |
attributes | various attributes. See below |
options | connection options |
See AbstractConnection::constructor() for attributes
and options
reference.
CONNECTION-OPTION-ERROR | missing or invalid connection option |
DataProvider::AbstractDataProvider SmtpClient::SmtpConnection::getDataProvider | ( | ) |
returns an SmtpClientDataProvider object for this connection
|
privatevirtual |
returns an SmtpClient object
connect | if True, then SmtpClient::connect() is called |
rtopts | supports the following runtime options in getImpl() for connection logging:
|
Implements ConnectionProvider::AbstractConnection.
*hash< auto > SmtpClient::SmtpConnection::getRuntimeOptions | ( | ) |
returns runtime options
"log"
: a closure accepting a single string for logging"dbglog"
: a closure taking a single string for detailed technical connection logging bool SmtpClient::SmtpConnection::hasDataProvider | ( | ) |
returns True, as the connection returns a data provider with the getDataProvider() method
Qore::AbstractPollOperation SmtpClient::SmtpConnection::startPollConnect | ( | ) |
Called to start a non-blocking polling ping operation on the remote SMTP server.
bool SmtpClient::SmtpConnection::supportsPollingApi | ( | ) |
returns True, since this connection type supports the Qore Socket-based polling API