summaryrefslogtreecommitdiff
path: root/includes/mailer/users_mailer.php
blob: c2fa8c8d14674bc83e5f2c803cf9f51c44c1d9fc (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.")
    );
}