Skip to content

Commit c15ef64

Browse files
committed
php send emails with sendgrid api
1 parent b1fc897 commit c15ef64

231 files changed

Lines changed: 31402 additions & 0 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
engines:
2+
duplication:
3+
enabled: true
4+
config:
5+
languages:
6+
- "php"
7+
phpcodesniffer:
8+
enabled: true
9+
config:
10+
file_extensions: "php"
11+
standard: "PSR1,PSR2"
12+
ratings:
13+
paths:
14+
- "**.php"
15+
exclude_paths:
16+
- "examples/**/*"
17+
- "test/**/*"
18+
- "vendor/**/*"
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# Composer
2+
vendor/
3+
*.phar
4+
*.lock
5+
6+
# Jetbrains Idea
7+
*.old
8+
.idea/
9+
10+
# Environment files
11+
.env/*.*
12+
13+
# Local configs
14+
.php_cs
15+
.php_cs.cache
16+
phpunit.xml
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<?php
2+
3+
$finder = PhpCsFixer\Finder::create()
4+
->in(__DIR__ . '/lib');
5+
6+
return PhpCsFixer\Config::create()
7+
->setRiskyAllowed(true)
8+
->setRules([
9+
'@PSR2' => true,
10+
'@Symfony' => true,
11+
'array_syntax' => ['syntax' => 'short'],
12+
'cast_spaces' => ['space' => 'single'],
13+
'yoda_style' => false,
14+
'concat_space' => ['spacing' => 'one'],
15+
'phpdoc_summary' => false,
16+
'combine_consecutive_unsets' => true,
17+
'final_internal_class' => true,
18+
'global_namespace_import' => ['import_classes' => false],
19+
])
20+
->setFinder($finder);
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
language: php
2+
3+
php:
4+
- 5.6
5+
- 7.0
6+
- 7.1
7+
- 7.2
8+
- 7.3
9+
- 7.4
10+
11+
env:
12+
matrix:
13+
- dependencies=lowest
14+
- dependencies=highest
15+
global:
16+
- composer_flags="--no-interaction --no-ansi --no-progress --no-suggest --verbose"
17+
18+
before_install:
19+
- composer self-update
20+
- composer clear-cache
21+
22+
install:
23+
- if [ -n "$GIT_HUB_TOKEN" ]; then composer config -g github-oauth.github.com "$GIT_HUB_TOKEN"; fi;
24+
- if [ "$dependencies" = "highest" ]; then composer update $composer_flags; fi;
25+
- if [ "$dependencies" = "lowest" ]; then composer update $composer_flags --prefer-lowest --prefer-stable; fi;
26+
27+
script:
28+
- vendor/bin/phpunit test/unit
29+
30+
after_success:
31+
- bash <(curl -s https://codecov.io/bash)
32+
33+
notifications:
34+
slack:
35+
if: branch = main
36+
on_pull_requests: false
37+
on_success: never
38+
on_failure: change
39+
rooms:
40+
- secure: UiDCIJkcMNmiUGz1S0+sgZ8vWnDnj2X6Vq9YXP/UTufkdmfJallrxbrZISM24rgdObcC4vXfqRPmK5/fIPAKoniAd5JNIcQxtuCJox8HIqtSsOoU4Ffx1s2W6gGSB43howJkufROv1Au2P9I5fO34R7kdSTeUShFVBKTRYMUL6BPyeE+wb1ohl2d9afEo8yCppOvJe/JXccAgS1mHyRAoWn9SiA2o5cr7BWv1W+RUwOr762WZ+baaAT6zh0bnQ7fMzWfY1JZQQMxCx3M+Q8RQTdFcjGZGAfipAPs37VZd5ePMkYGFICgs2cp1jE85yNUnGZaxXx/XyamjQhqXrMV4cRbNwiI85sVJNxwoREZLROKPwZpuLQ7mZwm0lG6zpMbLPGtTlZmhUpd17qgr4e9K29AoE4+/ewNJmiiUn11+FYiUbimBSxuHomX11Bii7zbt1nsM8/f8nk10K2mr/jyiG3ANkHduXwKvwbMcPruBxw5DEJ54Q4OxhW6Oh2kkIqGc9HwF1AZJWec4HtMFvc00siqaydFVCN9etJSsJJS8Oe4a5erEg06fy4P5TQ74dzTkICeeShO4Fh5u8x95U6zV1zTJ2XR/RwWQDXxkkO5NH+0g4iEPneb36dMQiRoSzcKVxTE0ABM2BMVrb1xKHqhF51zSDaEOYb6UNsqJh3Qed0=
Lines changed: 222 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,222 @@
1+
# Change Log
2+
All notable changes to this project will be documented in this file.
3+
4+
This project adheres to [Semantic Versioning](http://semver.org/).
5+
6+
[2020-11-05] Version 3.13.0
7+
---------------------------
8+
**Library - Feature**
9+
- [PR #101](https://github.com/sendgrid/php-http-client/pull/101): Allows for a user to utilize self-signed certificates. Thanks to [@davcpas1234](https://github.com/davcpas1234)!
10+
11+
12+
[2020-10-14] Version 3.12.0
13+
---------------------------
14+
**Library - Feature**
15+
- [PR #103](https://github.com/sendgrid/php-http-client/pull/103): Throw an InvalidRequest whenever a curl request fails. Thanks to [@colinodell](https://github.com/colinodell)!
16+
17+
18+
[2020-08-19] Version 3.11.1
19+
---------------------------
20+
**Library - Docs**
21+
- [PR #116](https://github.com/sendgrid/php-http-client/pull/116): Add first-timers.md for newcomers. Thanks to [@daniloff200](https://github.com/daniloff200)!
22+
23+
**Library - Chore**
24+
- [PR #145](https://github.com/sendgrid/php-http-client/pull/145): update GitHub branch references to use HEAD. Thanks to [@thinkingserious](https://github.com/thinkingserious)!
25+
26+
27+
[2020-07-22] Version 3.11.0
28+
---------------------------
29+
**Library - Test**
30+
- [PR #120](https://github.com/sendgrid/php-http-client/pull/120): test enhancements. Thanks to [@peter279k](https://github.com/peter279k)!
31+
32+
**Library - Feature**
33+
- [PR #109](https://github.com/sendgrid/php-http-client/pull/109): automatic code style checking. Thanks to [@misantron](https://github.com/misantron)!
34+
35+
36+
[2020-06-24] Version 3.10.8
37+
---------------------------
38+
**Library - Fix**
39+
- [PR #143](https://github.com/sendgrid/php-http-client/pull/143): Composer configuration, typos and type hints. Thanks to [@kampalex](https://github.com/kampalex)!
40+
41+
42+
[2020-06-10] Version 3.10.7
43+
---------------------------
44+
**Library - Fix**
45+
- [PR #144](https://github.com/sendgrid/php-http-client/pull/144): replace Throwable with Exception. Thanks to [@childish-sambino](https://github.com/childish-sambino)!
46+
47+
48+
[2020-04-29] Version 3.10.6
49+
---------------------------
50+
**Library - Fix**
51+
- [PR #141](https://github.com/sendgrid/php-http-client/pull/141): add the singular 'suppression' method. Thanks to [@childish-sambino](https://github.com/childish-sambino)!
52+
53+
54+
[2020-03-18] Version 3.10.5
55+
---------------------------
56+
**Library - Docs**
57+
- [PR #111](https://github.com/sendgrid/php-http-client/pull/111): run .md files through grammarly. Thanks to [@redbrickone](https://github.com/redbrickone)!
58+
59+
60+
[2020-03-04] Version 3.10.4
61+
---------------------------
62+
**Library - Chore**
63+
- [PR #140](https://github.com/sendgrid/php-http-client/pull/140): add PHP 7.4 to Travis and test with lowest dependencies. Thanks to [@childish-sambino](https://github.com/childish-sambino)!
64+
65+
66+
[2020-02-19] Version 3.10.3
67+
---------------------------
68+
**Library - Fix**
69+
- [PR #134](https://github.com/sendgrid/php-http-client/pull/134): Change contactsdb to marketing api #133. Thanks to [@murich](https://github.com/murich)!
70+
71+
72+
[2020-01-22] Version 3.10.2
73+
---------------------------
74+
**Library - Docs**
75+
- [PR #139](https://github.com/sendgrid/php-http-client/pull/139): baseline all the templated markdown docs. Thanks to [@childish-sambino](https://github.com/childish-sambino)!
76+
77+
78+
[2020-01-09] Version 3.10.1
79+
---------------------------
80+
**Library - Chore**
81+
- [PR #138](https://github.com/sendgrid/php-http-client/pull/138): prep the repo for automated releasing. Thanks to [@childish-sambino](https://github.com/childish-sambino)!
82+
- [PR #135](https://github.com/sendgrid/php-http-client/pull/135): add more PHP versions to .travis.yml. Thanks to [@PaiizZ](https://github.com/PaiizZ)!
83+
84+
**Library - Docs**
85+
- [PR #122](https://github.com/sendgrid/php-http-client/pull/122): fix grammar in Readme. Thanks to [@jmauerhan](https://github.com/jmauerhan)!
86+
87+
88+
[2019-12-11] Version 3.10.0
89+
---------------------------
90+
91+
**Library - Fix**
92+
- [PR #99](https://github.com/sendgrid/php-http-client/pull/99): Throw InvalidRequest exception on invalid CURL request. Thanks to [@alextech](https://github.com/alextech)!
93+
94+
**Library - Docs**
95+
- [PR #102](https://github.com/sendgrid/php-http-client/pull/102): Create a Use Cases Directory. Thanks to [@ProZsolt](https://github.com/ProZsolt)!
96+
- [PR #106](https://github.com/sendgrid/php-http-client/pull/106): Only mention the lowest required PHP version in README. Thanks to [@svenluijten](https://github.com/svenluijten)!
97+
98+
## [3.9.6] - 2018-04-10
99+
### Added
100+
- PR [#98](https://github.com/sendgrid/php-http-client/pull/98). Updated documention of `Client.php` using PHPDoc.
101+
- Thanks to [Martijn Melchers](https://github.com/martijnmelchers) for the pull request!
102+
103+
## [3.9.5] - 2018-03-26
104+
### Added
105+
- Fixes [#94](https://github.com/sendgrid/php-http-client/issues/94), PR [#95](https://github.com/sendgrid/php-http-client/pull/95): CreateCurlOptions method regression tests
106+
- Thanks to [Alexandr Ivanov](https://github.com/misantron) for the pull request!
107+
108+
## [3.9.4] - 2018-03-22
109+
### Fixed
110+
- Fixes [#586](https://github.com/sendgrid/sendgrid-php/issues/586), PR [#96](https://github.com/sendgrid/php-http-client/pull/96): Fix constructor function signature regression.
111+
112+
## [3.9.3] - 2018-03-11
113+
### Fixed
114+
- Fixes [#584](https://github.com/sendgrid/sendgrid-php/issues/584), PR [#93](https://github.com/sendgrid/php-http-client/pull/93): Don't overwrite headers set from upstream dependencies.
115+
116+
## [3.9.2] - 2018-03-10
117+
### Fixed
118+
- Fixes [#12](https://github.com/sendgrid/php-http-client/issues/12), PR [#91](https://github.com/sendgrid/php-http-client/pull/91): Curl Options broken as array merge does not preserve keys.
119+
120+
## [3.9.1] - 2018-03-09
121+
### Fixed
122+
- Fixes [#88](https://github.com/sendgrid/php-http-client/issues/88), PR [#89](https://github.com/sendgrid/php-http-client/pull/89): Restore missing function 'prepareResponse' due to bad previous merge.
123+
124+
## [3.9.0] - 2018-03-08
125+
### Added
126+
- PR [#24](https://github.com/sendgrid/php-http-client/pull/24): implements sending concurrent requests with curl multi, thanks to [Tuan Nguyen](https://github.com/lightbringer1991) for the PR!
127+
- PR [#25](https://github.com/sendgrid/php-http-client/pull/25): Add description how install php-http-client manually, thanks to [Ivan](https://github.com/janczer) for the PR!
128+
- PR [#28](https://github.com/sendgrid/php-http-client/pull/28): Create code of conduct, thanks to [Alexander Androsyuk](https://github.com/alex2sat) for the PR!
129+
- Closes [#32](https://github.com/sendgrid/php-http-client/issues/32), PR [#33](https://github.com/sendgrid/php-http-client/pull/33): Added TROUBLESHOOTING + Debug Info, thanks to [Braunson Yager](https://github.com/Braunson) for the PR!
130+
- Closes [#35](https://github.com/sendgrid/php-http-client/issues/35), PR [#37](https://github.com/sendgrid/php-http-client/pull/37): Update README badges, thanks to [Tim Harshman](https://github.com/goteamtim) for the PR!
131+
- Closes [#34](https://github.com/sendgrid/php-http-client/issues/34), PR [#38](https://github.com/sendgrid/php-http-client/pull/38): Update .md files with hyphen vs underscore for page links to enhance SEO, thanks to [Eric Kates](https://github.com/positronek) for the PR!
132+
- Closes [#39](https://github.com/sendgrid/php-http-client/issues/39), PR [#40](https://github.com/sendgrid/php-http-client/pull/40): Added Packagist badge to README, thanks to [Rakshan Shetty](https://github.com/rakshans1) for the PR!
133+
- PR [#41](https://github.com/sendgrid/php-http-client/pull/41): Add table of contents in README.md, thanks to [thepriefy](https://github.com/thepriefy) for the PR!
134+
- PR [#42](https://github.com/sendgrid/php-http-client/pull/42): Add SendGrid logo at the top of README.md, thanks to [thepriefy](https://github.com/thepriefy) for the PR!
135+
- PR [#43](https://github.com/sendgrid/php-http-client/pull/43): Add License section to the README.md, thanks to [thepriefy](https://github.com/thepriefy) for the PR!
136+
- Closes [#46](https://github.com/sendgrid/php-http-client/issues/46), PR [#47](https://github.com/sendgrid/php-http-client/pull/47): Create Pull Request Template, thanks to [Paweł Lewtak](https://github.com/pawel-lewtak) for the PR!
137+
- Closes [#48](https://github.com/sendgrid/php-http-client/issues/48), PR [#51](https://github.com/sendgrid/php-http-client/pull/51): Added example file, updated .gitignore and README, thanks to [Diego Rocha](https://github.com/dhsrocha) for the PR!
138+
- PR [#53](https://github.com/sendgrid/php-http-client/pull/53): README and usage example update, thanks to [Alexandr Ivanov](https://github.com/misantron) for the PR!
139+
- PR [#55](https://github.com/sendgrid/php-http-client/pull/55): Code climate config, thanks to [Alexandr Ivanov](https://github.com/misantron) for the PR!
140+
- Closes [#58](https://github.com/sendgrid/php-http-client/pull/58), PR [#60](https://github.com/sendgrid/php-http-client/pull/60): Adds unit test for checking file existence in repo, thanks to [Michele Orselli](https://github.com/micheleorselli) for the PR!
141+
- Closes [#57](https://github.com/sendgrid/php-http-client/pull/57), PR [#61](https://github.com/sendgrid/php-http-client/pull/61): Adds unit test for checking year on licence, thanks to [Michele Orselli](https://github.com/micheleorselli) for the PR!
142+
- Closes [#50](https://github.com/sendgrid/php-http-client/issues/50), PR [#62](https://github.com/sendgrid/php-http-client/pull/62): Create USAGE.md, thanks to [Nitanshu](https://github.com/nvzard) for the PR!
143+
- Closes [#57](https://github.com/sendgrid/php-http-client/issues/57), PR [#66](https://github.com/sendgrid/php-http-client/pull/66): Add unit test for license year, thanks to [Alex](https://github.com/pushkyn) for the PR!
144+
- Closes [#67](https://github.com/sendgrid/php-http-client/issues/67), PR [#68](https://github.com/sendgrid/php-http-client/pull/68): Add CodeCov support to .travis.yml, thanks to [Manjiri Tapaswi](https://github.com/mptap) for the PR!
145+
- Closes [#49](https://github.com/sendgrid/php-http-client/issues/49), PR [#73](https://github.com/sendgrid/php-http-client/pull/73): Create Dockerfile, thanks to [Jessica Mauerhan](https://github.com/jmauerhan) for the PR!
146+
- Closes [#76](https://github.com/sendgrid/php-http-client/issues/76), PR [#78](https://github.com/sendgrid/php-http-client/pull/78): Added Pull Requests Review section to CONTRIBUTE.md Closes, thanks to [Povilas Balzaravičius](https://github.com/Pawka) for the PR!
147+
- Closes [#63](https://github.com/sendgrid/php-http-client/issues/63), PR [#79](https://github.com/sendgrid/php-http-client/pull/79): Refactor makeRequest method, thanks to [Michael Dennis](https://github.com/michaeljdennis) for the PR!
148+
- PR [#82](https://github.com/sendgrid/php-http-client/pull/82): Add JsonSerializable type to phpDoc of $body parameter in makeRequest method, thanks to [Jan Konáš](https://github.com/jankonas) for the PR!
149+
- PR [#85](https://github.com/sendgrid/php-http-client/pull/85): Updated the PHP Version details, thanks to [Siddhant Sharma](https://github.com/ssiddhantsharma) for the PR!
150+
- PR [#86](https://github.com/sendgrid/php-http-client/pull/86): Add phpdoc for send method, thanks to [Vitaliy Ryaboy](https://github.com/rvitaliy) for the PR!
151+
- PR [#84](https://github.com/sendgrid/php-http-client/pull/84): Update Docker instructions
152+
153+
154+
### Fixed
155+
- PR [#26](https://github.com/sendgrid/php-http-client/pull/26): README typo, thanks to [Cícero Pablo](https://github.com/ciceropablo) for the PR!
156+
- PR [#30](https://github.com/sendgrid/php-http-client/pull/30), Fixes [#18](https://github.com/sendgrid/php-http-client/issues/18): Disable CURLOPT_FAILONERROR, thanks to [Zsolt Prontvai](https://github.com/ProZsolt) for the PR!
157+
- PR [#44](https://github.com/sendgrid/php-http-client/pull/44): Fix Typo and add missing links to README, thanks to [Alex](https://github.com/pushkyn) for the PR!
158+
- PR [#52](https://github.com/sendgrid/php-http-client/pull/52): Fix syntax errors in README examples, thanks to [Michael Spiss](https://github.com/michaelspiss) for the PR!
159+
- Fixes [#56](https://github.com/sendgrid/php-http-client/pull/56), PR [#59](https://github.com/sendgrid/php-http-client/pull/59): Update LICENSE - fix year, thanks to [Alex](https://github.com/pushkyn) for the PR!
160+
- PR [#69](https://github.com/sendgrid/php-http-client/pull/69): Remove extra parenthesis from README, thanks to [Jessica Mauerhan](https://github.com/jmauerhan) for the PR!
161+
- PR [#71](https://github.com/sendgrid/php-http-client/pull/71): Fix typo in CONTRIBUTING.md, thanks to [thepriefy](https://github.com/thepriefy) for the PR!
162+
- Fixes [#81](https://github.com/sendgrid/php-http-client/issues/81), PR [#87](https://github.com/sendgrid/php-http-client/pull/87): Stop using insecure option by default
163+
164+
## [3.8.0] - 2017-09-13
165+
### Added
166+
- Pull request #23: [Automatically retry when rate limit is reached](https://github.com/sendgrid/php-http-client/pull/23)
167+
- Thanks to [Budi Chandra](https://github.com/budirec) for the pull request!
168+
169+
## [3.7.0] - 2017-05-04
170+
### Added
171+
- Pull request #19: [Added ability to get headers as associative array](https://github.com/sendgrid/php-http-client/pull/19)
172+
- Solves issue #361: [https://github.com/sendgrid/sendgrid-php/issues/361](https://github.com/sendgrid/sendgrid-php/issues/361)
173+
- Thanks to [Alexander](https://github.com/mazanax) for the pull request!
174+
175+
## [3.6.0] - 2017-03-01
176+
### Added
177+
- Pull request #16: [Pass the curlOptions to the client in buildClient](https://github.com/sendgrid/php-http-client/pull/16)
178+
- Thanks to [Baptiste Clavié](https://github.com/Taluu) for the pull request!
179+
180+
## [3.5.1] - 2016-11-17
181+
### Fixed
182+
- Pull request #13, fixed issue #12: [Change from to php union operator to combine curl options](https://github.com/sendgrid/php-http-client/pull/13)
183+
- Thanks to [emil](https://github.com/emilva) for the pull request!
184+
185+
## [3.5.0] - 2016-10-18
186+
### Added
187+
- Pull request #11: [Added curlOptions property to customize curl instance](https://github.com/sendgrid/php-http-client/pull/11)
188+
- Thanks to [Alain Tiemblo](https://github.com/ninsuo) for the pull request!
189+
190+
## [3.4.0] - 2016-09-27
191+
### Added
192+
- Pull request #9: [Add getters for certain properties](https://github.com/sendgrid/php-http-client/pull/9)
193+
- Thanks to [Arjan Keeman](https://github.com/akeeman) for the pull request!
194+
195+
## [3.3.0] - 2016-09-13
196+
### Added
197+
- Pull request #6: [Library refactoring around PSR-2 / PSR-4 code standards](https://github.com/sendgrid/php-http-client/pull/6)
198+
- Thanks to [Alexandr Ivanov](https://github.com/misantron) for the pull request!
199+
200+
## [3.1.0] - 2016-06-10
201+
### Added
202+
- Automatically add Content-Type: application/json when there is a request body
203+
204+
## [3.0.0] - 2016-06-06
205+
### Changed
206+
- Made the Request and Response variables non-redundant. e.g. request.requestBody becomes request.body
207+
208+
## [2.0.2] - 2016-02-29
209+
### Fixed
210+
- Renaming files to conform to PSR-0, git ignored the case in 2.0.1
211+
212+
## [2.0.1] - 2016-02-29
213+
### Fixed
214+
- Renaming files to conform to PSR-0
215+
216+
## [1.0.1] - 2016-02-29
217+
### Fixed
218+
- Composer/Packagist install issues resolved
219+
220+
## [1.0.0] - 2016-02-29
221+
### Added
222+
- We are live!

0 commit comments

Comments
 (0)