Start email account outgoing mail

This function sends all of the outgoing mail from Exim's queue for an email account.

Note:

To set Exim to queue all outgoing mail for an email account, use the UAPI Email::hold_outgoing function.

SecurityBasicAuth
Request
query Parameters
email
required
string <email>

The email account's username.

Example: email=username@example.com
Responses
200

HTTP Request was successful.

Response Schema: application/json
apiversion
integer

The version of the API.

func
string

The name of the method called.

module
string

The name of the module called.

object
get/Email/release_outgoing
Request samples
uapi --output=jsonpretty \
  --user=username \
  Email \
  release_outgoing \
  email='username@example.com'
Response samples
application/json
{
  • "apiversion": 3,
  • "func": "release_outgoing",
  • "module": "Email",
  • "result": {
    • "data": null,
    • "errors": null,
    • "messages": null,
    • "metadata": { },
    • "status": 1,
    • "warnings": null
    }
}