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
353 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.')
);
}