mirror of
https://github.com/ConjureETS/Interface-Admin.git
synced 2026-03-24 04:21:06 +00:00
21 lines
369 B
PHP
21 lines
369 B
PHP
<?php
|
|
/**
|
|
* Created by PhpStorm.
|
|
* User: Massimo
|
|
* Date: 2019-10-12
|
|
* Time: 9:17 PM
|
|
*/
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
use App\Mail\InscriptionMail;
|
|
use Illuminate\Support\Facades\Mail;
|
|
|
|
class MailController extends Controller
|
|
{
|
|
public function sendInscriptionMail($member)
|
|
{
|
|
Mail::to($member->email)->send(new InscriptionMail($member));
|
|
}
|
|
}
|