File "TransactionalEmailsApiTest.php"
Full Path: /home/clickysoft/public_html/jmapi5.clickysoft.net/vendor/getbrevo/brevo-php/test/Api/TransactionalEmailsApiTest.php
File size: 6.14 KB
MIME-type: text/x-php
Charset: utf-8
<?php
/**
* TransactionalEmailsApiTest
* PHP version 5
*
* @category Class
* @package Brevo\Client
* @author Swagger Codegen team
* @link https://github.com/swagger-api/swagger-codegen
*/
/**
* Brevo API
*
* Brevo provide a RESTFul API that can be used with any languages. With this API, you will be able to : - Manage your campaigns and get the statistics - Manage your contacts - Send transactional Emails and SMS - and much more... You can download our wrappers at https://github.com/orgs/brevo **Possible responses** | Code | Message | | :-------------: | ------------- | | 200 | OK. Successful Request | | 201 | OK. Successful Creation | | 202 | OK. Request accepted | | 204 | OK. Successful Update/Deletion | | 400 | Error. Bad Request | | 401 | Error. Authentication Needed | | 402 | Error. Not enough credit, plan upgrade needed | | 403 | Error. Permission denied | | 404 | Error. Object does not exist | | 405 | Error. Method not allowed | | 406 | Error. Not Acceptable |
*
* OpenAPI spec version: 3.0.0
* Contact: contact@brevo.com
* Generated by: https://github.com/swagger-api/swagger-codegen.git
* Swagger Codegen version: 2.4.29
*/
/**
* NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen
* Please update the test case below to test the endpoint.
*/
namespace Brevo\Client;
use \Brevo\Client\Configuration;
use \Brevo\Client\ApiException;
use \Brevo\Client\ObjectSerializer;
/**
* TransactionalEmailsApiTest Class Doc Comment
*
* @category Class
* @package Brevo\Client
* @author Swagger Codegen team
* @link https://github.com/swagger-api/swagger-codegen
*/
class TransactionalEmailsApiTest extends \PHPUnit_Framework_TestCase
{
/**
* Setup before running any test cases
*/
public static function setUpBeforeClass()
{
}
/**
* Setup before running each test case
*/
public function setUp()
{
}
/**
* Clean up after running each test case
*/
public function tearDown()
{
}
/**
* Clean up after running all test cases
*/
public static function tearDownAfterClass()
{
}
/**
* Test case for blockNewDomain
*
* Add a new domain to the list of blocked domains.
*
*/
public function testBlockNewDomain()
{
}
/**
* Test case for createSmtpTemplate
*
* Create an email template.
*
*/
public function testCreateSmtpTemplate()
{
}
/**
* Test case for deleteBlockedDomain
*
* Unblock an existing domain from the list of blocked domains.
*
*/
public function testDeleteBlockedDomain()
{
}
/**
* Test case for deleteHardbounces
*
* Delete hardbounces.
*
*/
public function testDeleteHardbounces()
{
}
/**
* Test case for deleteScheduledEmailById
*
* Delete scheduled emails by batchId or messageId.
*
*/
public function testDeleteScheduledEmailById()
{
}
/**
* Test case for deleteSmtpTemplate
*
* Delete an inactive email template.
*
*/
public function testDeleteSmtpTemplate()
{
}
/**
* Test case for getAggregatedSmtpReport
*
* Get your transactional email activity aggregated over a period of time.
*
*/
public function testGetAggregatedSmtpReport()
{
}
/**
* Test case for getBlockedDomains
*
* Get the list of blocked domains.
*
*/
public function testGetBlockedDomains()
{
}
/**
* Test case for getEmailEventReport
*
* Get all your transactional email activity (unaggregated events).
*
*/
public function testGetEmailEventReport()
{
}
/**
* Test case for getScheduledEmailByBatchId
*
* Fetch scheduled emails by batchId.
*
*/
public function testGetScheduledEmailByBatchId()
{
}
/**
* Test case for getScheduledEmailByMessageId
*
* Fetch scheduled email by messageId.
*
*/
public function testGetScheduledEmailByMessageId()
{
}
/**
* Test case for getSmtpReport
*
* Get your transactional email activity aggregated per day.
*
*/
public function testGetSmtpReport()
{
}
/**
* Test case for getSmtpTemplate
*
* Returns the template information.
*
*/
public function testGetSmtpTemplate()
{
}
/**
* Test case for getSmtpTemplates
*
* Get the list of email templates.
*
*/
public function testGetSmtpTemplates()
{
}
/**
* Test case for getTransacBlockedContacts
*
* Get the list of blocked or unsubscribed transactional contacts.
*
*/
public function testGetTransacBlockedContacts()
{
}
/**
* Test case for getTransacEmailContent
*
* Get the personalized content of a sent transactional email.
*
*/
public function testGetTransacEmailContent()
{
}
/**
* Test case for getTransacEmailsList
*
* Get the list of transactional emails on the basis of allowed filters.
*
*/
public function testGetTransacEmailsList()
{
}
/**
* Test case for sendTestTemplate
*
* Send a template to your test list.
*
*/
public function testSendTestTemplate()
{
}
/**
* Test case for sendTransacEmail
*
* Send a transactional email.
*
*/
public function testSendTransacEmail()
{
}
/**
* Test case for smtpBlockedContactsEmailDelete
*
* Unblock or resubscribe a transactional contact.
*
*/
public function testSmtpBlockedContactsEmailDelete()
{
}
/**
* Test case for smtpLogMessageIdDelete
*
* Delete an SMTP transactional log.
*
*/
public function testSmtpLogMessageIdDelete()
{
}
/**
* Test case for updateSmtpTemplate
*
* Update an email template.
*
*/
public function testUpdateSmtpTemplate()
{
}
}