You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
415 B
PHP
20 lines
415 B
PHP
<?php
|
|
|
|
use Engelsystem\Models\User\User;
|
|
|
|
/**
|
|
* @param User $user
|
|
* @return bool
|
|
*/
|
|
function mail_user_delete($user)
|
|
{
|
|
return engelsystem_email_to_user(
|
|
$user,
|
|
__('Your account has been deleted'),
|
|
__(
|
|
'Your %s account has been deleted. If you have any questions regarding your account deletion, please contact heaven.',
|
|
[config('app_name')]
|
|
)
|
|
);
|
|
}
|