![]() |
Qore SmtpClient Module Reference
1.7
|
class for SMTP connections; returns an object of class SmtpClient for sending emails More...

Public Member Methods | |
| deprecated | constructor (string name, string desc, string url, bool monitor, *hash opts, hash urlh) |
| DEPRECATED: creates the SmtpConnection object. More... | |
| constructor (string name, string description, string url, hash attributes={}, hash options={}) | |
| creates the SmtpConnection connection object More... | |
| *hash | getRuntimeOptions () |
| returns runtime options More... | |
| string | getType () |
returns "smtp" | |
Static Public Member Methods | |
| static deprecated SmtpConnection | make (string name, string desc, string url, bool monitor, *hash opts, hash urlh) |
| DEPRECATED: static constructor. More... | |
Private Member Methods | |
| hash< ConnectionConstructorInfo > | getConstructorInfoImpl () |
| returns a hash that can be used to contruct the object dynamically More... | |
| SmtpClient | getImpl (bool connect=True, *hash rtopts) |
| returns an SmtpClient object More... | |
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 logging| deprecated SmtpClient::SmtpConnection::constructor | ( | string | name, |
| string | desc, | ||
| string | url, | ||
| bool | monitor, | ||
| *hash | opts, | ||
| hash | urlh | ||
| ) |
DEPRECATED: creates the SmtpConnection object.
| name | the name of the connection |
| desc | connection description |
| url | connection URL |
| monitor | monitoring flag |
| opts | connection options |
| urlh | broken down URL hash (as returned by Qore::parse_url()) |
| SmtpClient::SmtpConnection::constructor | ( | string | name, |
| string | description, | ||
| string | url, | ||
| hash | attributes = {}, |
||
| hash | 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.
|
privatevirtual |
returns a hash that can be used to contruct the object dynamically
Implements ConnectionProvider::AbstractConnection.
|
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 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
|
static |
DEPRECATED: static constructor.