Skip to content

Amazon Simple Email Service PHP class updated with Signing AWS Requests with Signature Version 4 Support

License

Notifications You must be signed in to change notification settings

wpgeek922/php-aws-ses-v4

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 

Repository files navigation

php-aws-ses-v4

Amazon Simple Email Service PHP class updated with Signing AWS Requests with Signature Version 4 Support

Original Class

Amazon SimpleEmailService PHP class @link http://sourceforge.net/projects/php-aws-ses/ version 0.8.2

Usage

 require_once("ses.php");
    
 $ses = new SimpleEmailService("AWS_ACCESS_KEY", 
 "AWS_SECRET_KEY", "AWS_REGION");

 $msg = new SimpleEmailServiceMessage();

 $msg->from = "[email protected]";
 $msg->subject = "Update V4 Signature";
 $msg->messagetext = "Amazon SES PHP Class With V4 Signature";
 $msg->to = array("[email protected]");

 try {
  $res = $ses->sendEmail($msg);
  var_dump($res);
 } catch (Exception $e) {
  var_dump($e);
 }

About

Amazon Simple Email Service PHP class updated with Signing AWS Requests with Signature Version 4 Support

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages