add email signup flow
This commit is contained in:
parent
9945163a2f
commit
3dc9204979
27 changed files with 629 additions and 24 deletions
14
backend/app/Email/Emailer.php
Normal file
14
backend/app/Email/Emailer.php
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
<?php
|
||||
|
||||
namespace App\Email;
|
||||
|
||||
use App\Shared\ValueObject\EmailAddress;
|
||||
|
||||
interface Emailer
|
||||
{
|
||||
public function send(
|
||||
EmailAddress $recipient,
|
||||
string $subject,
|
||||
string $body,
|
||||
): void;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue