summaryrefslogtreecommitdiff
path: root/includes/mailer/users_mailer.php
blob: b3f335d72461738b0a9fffbfa62a288c2621fee0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?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.')
    );
}