Skip to content

Commit

Permalink
Merge branch 'release/v.1.0.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
sanderpotjer committed Mar 3, 2022
2 parents 3e602cf + a6de3c2 commit 2aa448a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

Mailchimp Transactional mailer adapter for Craft CMS.

## 1.0.2 - 2022-03-03
### Fixed
- Fix PHP typing issue

## 1.0.1 - 2022-02-21
### Fixed
- Fix PHP 7 syntax errors
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "perfectwebteam/craft-mailchimp-transactional",
"description": "Mailchimp Transactional mailer adapter for Craft CMS.",
"type": "craft-plugin",
"version": "1.0.1",
"version": "1.0.2",
"keywords": [
"craft",
"cms",
Expand Down
2 changes: 1 addition & 1 deletion src/mail/MailchimpTransactionalTransport.php
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ protected function supportsContentType(string $contentType): bool
* @param Swift_Mime_SimpleMessage $message
* @return string|null
*/
protected function getMessagePrimaryContentType(Swift_Mime_SimpleMessage $message): string
protected function getMessagePrimaryContentType(Swift_Mime_SimpleMessage $message): ?string
{
$contentType = $message->getContentType();

Expand Down

0 comments on commit 2aa448a

Please sign in to comment.