- Postmark (http://postmarkapp.com)
- Amazon SES (http://aws.amazon.com/ses/)
- PostageApp (http://postageapp.com)
Add the following configuration in your Config/email.php file:
<?php
public $postmark = array(
'transport' => 'CakeEmailTransports.Postmark',
'secure' => false, //Set to true to use https
'apiKey' => '__your_api_key__', //Your postmark API key
'debug' => false //Set to true to test your configuration without sending the email
'tag' => false //Optionally set a tag that always has to be sent with every email
);
The following example shows you how to send an email with the postmark transport:
<?php
$email = new CakeEmail('postmark');
$email->to('[email protected]');
$email->from('[email protected]')
$email->subject('Hello World');
$email->send('This is an example email');
You can also set the postmark tag property on an email by email basis:
<?php
$email->addHeaders(array('X-Tag' => 'my-tag'));
By setting the debug configuration option to true, emails will never be sent out. It will use the debug api key from postmark. This can be used to debug your code and see if any errors happen.
By setting the debug configuration option to an email address, all emails will be sent to that address no mather what you type into the to, cc and bcc options.
<?php
public $postmark = array(
'transport' => 'CakeEmailTransports.Postmark',
'apiKey' => '__your_api_key__',
'debug' => '[email protected]'
);
- Amazon Web Services SDK (http://pear.amazonwebservices.com/)
Add the following configuration in your Config/email.php file:
<?php
public $amazon = array(
'transport' => 'CakeEmailTransports.Amazon',
'key' => '__your_amazon_access_key',
'secret' => '__your_amazon_secret_access_key',
);
The following example shows you how to send an email with the postmark transport:
<?php
$email = new CakeEmail('amazon');
$email->to('[email protected]');
$email->from('[email protected]')
$email->subject('Hello World');
$email->send('This is an example email');
Add the following configuration in your Config/email.php file:
<?php
public $postageapp = array(
'transport' => 'CakeEmailTransports.Postageapp',
'apiKey' => '__your_api_key__', //Your PostageApp API key
);
The following example shows you how to send an email with the postmark transport:
<?php
$email = new CakeEmail('postageapp');
$email->to('[email protected]');
$email->from('[email protected]')
$email->subject('Hello World');
$email->send('This is an example email');
- BCC, CC and Sender headers are not supported by PostageApp
Copyright © 2012 Jelle Henkens
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.