cPanel API 2 Functions - Email::fetchautoresponder

Warning:

The cPanel API 2 system is deprecated. We strongly recommend that you use UAPI instead of cPanel API 2.


Description

This function retrieves an autoresponder's information.

Warning:

We strongly recommend that you use the following UAPI function instead of this function:

  • Email::get_auto_responder — This function retrieves autoresponder information.

Important:

When you disable the Receive Mail role, the system disables this function.


Examples


WHM API (JSON)

https://hostname.example.com:2087/cpsess##########/json-api/cpanel?cpanel_jsonapi_user=user&cpanel_jsonapi_apiversion=2&cpanel_jsonapi_module=Email&cpanel_jsonapi_func=fetchautoresponder&email=bob@example.com
Note:

For more information, read our Calls from the WHM API documentation.


LiveAPI PHP Class

$cpanel = new CPANEL(); // Connect to cPanel - only do this once.

// Retrieve bob@example.com's autoresponder's information.
$get_autoresponder = $cpanel->api2(
    'Email', 'fetchautoresponder',
    array(
        'email'           => 'bob@example.com',
    )
);
Note:

For more information, read our Guide to the LiveAPI System.


LiveAPI Perl Module

my $cpliveapi = Cpanel::LiveAPI->new(); # Connect to cPanel - only do this once.

# Retrieve bob@example.com's autoresponder's information.
my $get_autoresponder = $cpliveapi->api2(
    'Email', 'fetchautoresponder',
    {
        'email'           => 'bob@example.com',
    }
);
Note:

For more information, read our Guide to the LiveAPI System.


cPanel Tag System (deprecated)

Warnings:
  • cPanel tags are deprecated . We strongly recommend that you only use the LiveAPI system to call the cPanel APIs. Examples are only present in order to help developers move from the old cPanel tag system to our LiveAPI .
  • cPanel API 2 calls that use cPanel tags vary in code syntax and in their output.
  • For more information, read our Deprecated cPanel Tag Usage documentation.

Command Line

cpapi2 --user=username Email fetchautoresponder email=bob%40example.com
Note:

For more information and additional output options, read our Guide to cPanel API 2 documentation or run the cpapi2 --help command.


Output (JSON)

{
  "cpanelresult": {
    "apiversion": 2,
    "func": "fetchautoresponder",
    "data": [
      {
        "stop": null,
        "subject": "I am on vacation today.",
        "charset": "utf-8",
        "interval": 3,
        "body": "Try emailing me again tomorrow.\n",
        "from": "malcolm@example.com",
        "is_html": 0,
        "start": null
      }
    ],
    "event": {
      "result": 1
    },
    "module": "Email"
  }
}
Note:

Use cPanel's API Shell interface (cPanel >> Home >> Advanced >> API Shell) to directly test cPanel API calls.


Parameters

Parameter Type Description Possible values Example
email string

Required

The autoresponder's email address.

A valid email address on the cPanel account.

bob@example.com

Returns

Return Type Description Possible values Example
stop string The autoresponder's stop time, if one exists.
  • A date in Unix time format.
  • null — The autoresponder does not have a stop time.
null
subject string The autoresponder's subject. A string value. I am on vacation today.
charset string The autoresponder message's character encoding. The character encoding system. utf-8
interval integer The number of hours that the autoresponder waits between responses to the same email address. A positive integer. 3
body string The autoresponder message's body. A string value. Try emailing me again tomorrow.\n
from string The autoresponder message's From: section.

A valid email address.

bob@example.com
is_html Boolean Whether the autoresponder message is HTML-formatted.
  • 1 — HTML formatted.
  • 0 — Plaintext formatted.
0
start string The autoresponder's start time, if one exists.
  • A date in Unix time format.
  • null — The autoresponder does not have a start time.
null
reason string

A reason for failure.

Note:

This function only returns a reason value if it failed.


A string that describes the error.

This is an error message.
result Boolean

Whether the function succeeded.

  • 1 — The function succeeded.
  • 0 — The function failed.
1