/* LibreSSL - CAcert web application Copyright (C) 2004-2008 CAcert Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ ?> $query = "select * from `users` where `id`='".intval($_SESSION['profile']['id'])."' and `users`.`deleted`=0"; $res = mysql_query($query); $user = mysql_fetch_assoc($res); $year = intval(substr($user['dob'], 0, 4)); $month = intval(substr($user['dob'], 5, 2)); $day = intval(substr($user['dob'], 8, 2)); $body = sprintf(_("Hi %s,"),$user['fname'])."\n\n"; $body .= _("You receive this automatic mail since you yourself or")."\n"; $body .= _("someone else looked up your secret questions and answers")."\n"; $body .= _("for a forgotten password.")."\n\n"; $body .= _("If it was you who looked up or changed that data, or clicked")."\n"; $body .= _("through the menu in your account, everything is in best order and")."\n"; $body .= _("you can ignore this mail.")."\n\n"; $body .= _("But if you received this mail without a recognisable reason,")."\n"; $body .= _("there is a danger that an unauthorised person accessed your")."\n"; $body .= _("account, and you should promptly change your password and your")."\n"; $body .= _("secret questions and answers.")."\n\n"; $body .= _("With kind regards,")."\n\n"._("CAcert Support"); sendmail($user['email'], "[CAcert.org] "._("Email Notification"), $body, "support@cacert.org", "", "", "CAcert Support"); ?>