Skip to content

Commit

Permalink
Merge pull request #5 from YieldStudio/bugfix/4-from-sender-email
Browse files Browse the repository at this point in the history
MailjetEmailMessage from
  • Loading branch information
dtangdev committed Jul 26, 2023
2 parents 43519fe + 928eb63 commit 7d47787
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/MailjetEmailMessage.php
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ public function from($name, $email = null): static
if (is_array($name)) {
$this->from = $name;
} else {
$this->from[] = [
$this->from = [
'Name' => $name,
'Email' => $email,
];
Expand Down

0 comments on commit 7d47787

Please sign in to comment.