Skip to content
This repository has been archived by the owner on Aug 16, 2018. It is now read-only.

tatsuyaueda/fuel-awsses

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 

Repository files navigation

fuel-awsses

FuelPHP package for AWS SES.

Requirement

AWS PHP SDK v2

How to use

Copy 'fuelphp-awsses' directory and all included files to fuel/packages.
Copy config/awsses.php into your APPPATH/config.
Modify awsses.php with your AWS developer key/secret key.

Example

$email = Email::forge(array('driver' => 'awsses'));
$email->from('from@example.jp', '差出人名');
$email->to('to@example.jp', '送信先名');
$email->cc('cc@example.jp');
$email->bcc('bcc@example.jp');
$email->subject('これはタイトルです。');
$email->body('これは本文です。');
$email->send();

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published