Skip to content

Commit

Permalink
chore: upgrade upstream library
Browse files Browse the repository at this point in the history
  • Loading branch information
pplulee committed May 4, 2024
1 parent 648ff5d commit 6d9628c
Show file tree
Hide file tree
Showing 45 changed files with 284 additions and 230 deletions.
2 changes: 1 addition & 1 deletion modules/mail/PostalMail/PostalMail.php
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ public function send(array $params, Message $message)

// Set the content for the e-mail
$sendMessage->plainBody($plainTextBody);
$sendMessage->htmlBody($body);
$sendMessage->htmlBody($body ?? '');

// Set the replyTo
$sendMessage->replyTo($replyTo);
Expand Down
72 changes: 36 additions & 36 deletions modules/mail/PostalMail/composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion modules/mail/PostalMail/vendor/composer/autoload_psr4.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
$baseDir = dirname($vendorDir);

return array(
'Psr\\Http\\Message\\' => array($vendorDir . '/psr/http-message/src', $vendorDir . '/psr/http-factory/src'),
'Psr\\Http\\Message\\' => array($vendorDir . '/psr/http-factory/src', $vendorDir . '/psr/http-message/src'),
'Psr\\Http\\Client\\' => array($vendorDir . '/psr/http-client/src'),
'Postal\\' => array($vendorDir . '/postal/postal/src'),
'GuzzleHttp\\Psr7\\' => array($vendorDir . '/guzzlehttp/psr7/src'),
Expand Down
4 changes: 2 additions & 2 deletions modules/mail/PostalMail/vendor/composer/autoload_static.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ class ComposerStaticInit730d0888edf5c7c6728eb3dd9ac0e1b0
public static $prefixDirsPsr4 = array (
'Psr\\Http\\Message\\' =>
array (
0 => __DIR__ . '/..' . '/psr/http-message/src',
1 => __DIR__ . '/..' . '/psr/http-factory/src',
0 => __DIR__ . '/..' . '/psr/http-factory/src',
1 => __DIR__ . '/..' . '/psr/http-message/src',
),
'Psr\\Http\\Client\\' =>
array (
Expand Down
Loading

0 comments on commit 6d9628c

Please sign in to comment.