Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
antonL95 committed Apr 20, 2024
1 parent ab4f77f commit 9d4c8ea
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/Mail/ContactFormMail.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class ContactFormMail extends Mailable
use Queueable, SerializesModels;

/**
* Create a new message instance.
* @param string $subject
*/
public function __construct(
private readonly string $email,
Expand All @@ -33,7 +33,7 @@ public function __construct(
public function envelope(): Envelope
{
return new Envelope(
replyTo: $this->email,
replyTo: [$this->email],
subject: $this->subject,
);
}
Expand Down

0 comments on commit 9d4c8ea

Please sign in to comment.