Skip to content

Commit

Permalink
Update Readme
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-zahariev committed Jul 10, 2020
1 parent bee2c15 commit 342acfc
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -214,8 +214,25 @@ $trigger_error = false;
$ses->sendEmail($m, $use_raw_request, $trigger_error);
```

### Request Signature Version

You can configure which version of the request signature should be used. [Version 4](https://docs.aws.amazon.com/general/latest/gr/sigv4_signing.html) is now supported but not used by default.

```php
<?php

$signature_version = SimpleEmailService::REQUEST_SIGNATURE_V4;
$ses = new SimpleEmailService('AccessKey', 'SecretKey', $region_endpoint, $trigger_error, $signature_version);
```



### Changelog

v.0.9.2

* Added support for AWS Signature Version 4

v.0.9.1

* Added support for AWS SES Configuration Sets and Message Tags
Expand Down

0 comments on commit 342acfc

Please sign in to comment.