Qore SmtpClient Module Reference  1.7
SmtpClient::SmtpConnection Class Reference

class for SMTP connections; returns an object of class SmtpClient for sending emails More...

Inheritance diagram for SmtpClient::SmtpConnection:

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 construct the object dynamically More...
 
SmtpClient getImpl (bool connect=True, *hash rtopts)
 returns an SmtpClient object More...
 

Detailed Description

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
Since
SmtpClient 1.6

Member Function Documentation

◆ constructor() [1/2]

deprecated SmtpClient::SmtpConnection::constructor ( string  name,
string  desc,
string  url,
bool  monitor,
*hash  opts,
hash  urlh 
)

DEPRECATED: creates the SmtpConnection object.

Parameters
namethe name of the connection
descconnection description
urlconnection URL
monitormonitoring flag
optsconnection options
urlhbroken down URL hash (as returned by Qore::parse_url())
Deprecated:
since Qore 0.9

◆ constructor() [2/2]

SmtpClient::SmtpConnection::constructor ( string  name,
string  description,
string  url,
hash  attributes = {},
hash  options = {} 
)

creates the SmtpConnection connection object

Parameters
namethe name of the connection
descriptionconnection description
urlconnection URL (potentially with password info)
attributesvarious attributes. See below
optionsconnection options

See AbstractConnection::constructor() for attributes and options reference.

◆ getConstructorInfoImpl()

hash<ConnectionConstructorInfo> SmtpClient::SmtpConnection::getConstructorInfoImpl ( )
privatevirtual

returns a hash that can be used to construct the object dynamically

Since
SmtoClient 1.7

Implements ConnectionProvider::AbstractConnection.

◆ getImpl()

SmtpClient SmtpClient::SmtpConnection::getImpl ( bool  connect = True,
*hash  rtopts 
)
privatevirtual

returns an SmtpClient object

Parameters
connectif True, then SmtpClient::connect() is called
rtoptssupports 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
Returns
an SmtpClient object

Implements ConnectionProvider::AbstractConnection.

◆ getRuntimeOptions()

*hash SmtpClient::SmtpConnection::getRuntimeOptions ( )

returns runtime options

Returns
a hash with the following keys reflecting support for the corresponding 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

◆ make()

static deprecated SmtpConnection SmtpClient::SmtpConnection::make ( string  name,
string  desc,
string  url,
bool  monitor,
*hash  opts,
hash  urlh 
)
static

DEPRECATED: static constructor.

Deprecated:
since Qore 0.9 in favor of new constructor and Qore::Reflection