Unsuspend email account outgoing mail

This function cancels the suspension action put in place by the UAPI Email::suspend_outgoing function for outgoing mail for an email account.

Note:

To suspend an email account and reject all outgoing mail, use the UAPI Email::suspend_outgoing function.

SecurityBasicAuth
Request
query Parameters
email
required
string

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/unsuspend_outgoing
Request samples
uapi --output=jsonpretty \
  --user=username \
  Email \
  unsuspend_outgoing \
  email='username@example.com'
Response samples
application/json
{
  • "apiversion": 3,
  • "func": "unsuspend_outgoing",
  • "module": "Email",
  • "result": {
    • "data": null,
    • "errors": null,
    • "messages": null,
    • "metadata": { },
    • "status": 1,
    • "warnings": null
    }
}