emailSendTest
public static bool emailSendTest(string token, string emailID, string testEmail)
Send a test email for the given Email ID
| Parameters |
| string token | A valid token for your account. To generate a token, use the login method. |
| string emailID | The ID of the email campaign to schedule. To get all the emails, use the emailGet method. |
| string testEmail | The email address to which the email campaign is to be sent as a test. |
| Returns |
| bool | Returns true if the email campaign was successfully sent to the test email address. |
- <?php
- /**
- This Example shows how to authenticate a user using XML-RPC.
- Note that we are using the PEAR XML-RPC client and recommend others do as well.
- **/
- require_once 'XML/RPC2/Client.php';
- require_once 'inc/config.php';
- $client = XML_RPC2_Client::create($apiURL);
- $token = $client->login($apiLogin, $apiPassword);
-
- /**
- Fetch the latest email, so we can retrieve the email ID.
- **/
- $emailList = $client->emailGet($token, "", 1, 1, "", "");
- $emailID = $emailList[0]['id'];
-
- $allOk = $client->emailSendTest($token, $emailID, $testEmailAddress);
- ?>