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.
15 lines
351 B
PHP
15 lines
351 B
PHP
<?php
|
|
|
|
/**
|
|
* @param array $user
|
|
* @return bool
|
|
*/
|
|
function mail_user_delete($user)
|
|
{
|
|
return engelsystem_email_to_user(
|
|
$user,
|
|
'[engelsystem] ' . _('Your account has been deleted'),
|
|
_('Your angelsystem account has been deleted. If you have any questions regarding your account deletion, please contact heaven.')
|
|
);
|
|
}
|