codeigniter-amazon-ses icon indicating copy to clipboard operation
codeigniter-amazon-ses copied to clipboard

A CodeIgniter library to interact with Amazon Web Services (AWS) Simple Email Service (SES)

Results 9 codeigniter-amazon-ses issues
Sort by recently updated
recently updated
newest added

Sender InvalidClientTokenId The security token included in the request is invalid 3c9c1cfa-65b4-11e4-86be-93a1f715622b The above error occurs when email is send.

The code for send attached files in Amazon

getting below error while using attach method for sending attachment - Message: Only variables should be passed by reference Filename: libraries/Amazon_ses.php Line Number: 204

Please let me know about unit test what is unit test library and how can i use it????

$this->load->library('Amazon_ses'); $this->amazon_ses->subject($data['title']); $this->amazon_ses->from($data['sender'], $data['sender_name']); $this->amazon_ses->to($data['reciever']); $this->amazon_ses->message($data['body']); $this->amazon_ses->debug(TRUE); var_dump( $this->amazon_ses->send(TRUE, $data['reply']) ); die('ses test');

I am trying to keep track of amazon ses bounced, complain. Could any one help me to add the return path in codeigniter-amazon-ses ? it should be $this->amazon_ses->return_path("[email protected]");

Amazon just announced [support for attachment](http://aws.amazon.com/about-aws/whats-new/2011/07/18/amazon-simple-email-service-announces-attachment-support/).

Feature
On hold

Some of the class properties can me directly loaded from the config file instead of being assigned to the instance first.

Improvement