"Improve message to assurer"
This commit is contained in:
parent
53a8c36859
commit
9bde006b4d
2 changed files with 31 additions and 3 deletions
|
@ -28,7 +28,7 @@
|
||||||
|
|
||||||
function sendmail($to, $subject, $message, $from, $replyto = "", $toname = "", $fromname = "", $errorsto = "returns@cacert.org", $extra="")
|
function sendmail($to, $subject, $message, $from, $replyto = "", $toname = "", $fromname = "", $errorsto = "returns@cacert.org", $extra="")
|
||||||
{
|
{
|
||||||
$lines = explode('\n', $message);
|
$lines = explode("\n", $message);
|
||||||
$message = "";
|
$message = "";
|
||||||
foreach($lines as $line)
|
foreach($lines as $line)
|
||||||
{
|
{
|
||||||
|
|
32
www/wot.php
32
www/wot.php
|
@ -442,8 +442,36 @@ $iecho= "c";
|
||||||
where `to`='".$user['id']."' group by `to` HAVING SUM(`points`) > 0"));
|
where `to`='".$user['id']."' group by `to` HAVING SUM(`points`) > 0"));
|
||||||
if($points > 0)
|
if($points > 0)
|
||||||
{
|
{
|
||||||
sendmail($user['email'], "[CAcert.org] ".$_REQUEST['subject'], $_REQUEST['message'],
|
$my_translation = L10n::get_translation();
|
||||||
$_SESSION['profile']['email'], "", "", $_SESSION['profile']['fname']." ".$_SESSION['profile']['lname']);
|
L10n::set_translation($user['language']);
|
||||||
|
|
||||||
|
$subject = "[CAcert.org] ".sprintf(_("Message from %s"),
|
||||||
|
$_SESSION['profile']['fname']);
|
||||||
|
|
||||||
|
$body = sprintf(_("Hi %s,"), $user['fname'])."\n\n";
|
||||||
|
$body .= sprintf(_("%s %s has sent you a message via the ".
|
||||||
|
"contact an Assurer form on CAcert.org."),
|
||||||
|
$_SESSION['profile']['fname'],
|
||||||
|
$_SESSION['profile']['lname'])."\n\n";
|
||||||
|
$body .= sprintf(_("Subject: %s"), $_REQUEST['subject'])."\n";
|
||||||
|
$body .= _("Message:")."\n";
|
||||||
|
$body .= $_REQUEST['message']."\n\n";
|
||||||
|
$body .= "------------------------------------------------\n\n";
|
||||||
|
$body .= _("Please note, that this is NOT a message on behalf ".
|
||||||
|
"of CAcert but another CAcert community member. If ".
|
||||||
|
"you suspect that the contact form might have been ".
|
||||||
|
"abused, please write to support@cacert.org")."\n\n";
|
||||||
|
$body .= _("Best regards")."\n";
|
||||||
|
$body .= _("Your CAcert Community");
|
||||||
|
|
||||||
|
sendmail($user['email'], $subject, $body,
|
||||||
|
$_SESSION['profile']['email'], //from
|
||||||
|
"", //replyto
|
||||||
|
"", //toname
|
||||||
|
$_SESSION['profile']['fname']." ".
|
||||||
|
$_SESSION['profile']['lname']); //fromname
|
||||||
|
|
||||||
|
L10n::set_translation($my_translation);
|
||||||
|
|
||||||
showheader(_("My CAcert.org Account!"));?>
|
showheader(_("My CAcert.org Account!"));?>
|
||||||
<p>
|
<p>
|
||||||
|
|
Loading…
Reference in a new issue