Skip to content

Commit

Permalink
fix: MailjetEmailMessage from
Browse files Browse the repository at this point in the history
  • Loading branch information
dtangdev committed Jul 26, 2023
1 parent 43519fe commit 928eb63
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 928eb63

Please sign in to comment.