add email threading headers
git-svn-id: http://svn.cacert.cl/Software/Voting/vote@46 d4452222-2f33-11de-9270-010000000000
This commit is contained in:
parent
ed0a6f42d5
commit
1d33c70c0e
5 changed files with 13 additions and 8 deletions
11
database.php
11
database.php
|
@ -80,13 +80,18 @@ Kind regards,
|
|||
the voting system.
|
||||
|
||||
BODY;
|
||||
$this->notify("Re: ".$decision['tag']." - ".$decision['title'],$body);
|
||||
$this->notify("Re: ".$decision['tag']." - ".$decision['title']." - finalised",$body,$decision['tag']);
|
||||
}
|
||||
}
|
||||
}
|
||||
function notify($subject,$body)
|
||||
function notify($subject,$body,$tag,$first=FALSE)
|
||||
{
|
||||
mail($this->board,$subject,$body,"From: Voting System <returns@cacert.org>");
|
||||
if ($first) {
|
||||
$header = "Message-id: <".$tag.">\r\n";
|
||||
} else {
|
||||
$header = "References: <".$tag.">\r\nIn-reply-to: <".$tag.">\r\n";
|
||||
}
|
||||
mail($this->board,$subject,$body,$header."From: Voting System <returns@cacert.org>");
|
||||
//mail("testsympa@lists.cacert.org",$subject,$body,"From: Voting System <returns@cacert.org>");
|
||||
}
|
||||
function auth()
|
||||
|
|
|
@ -72,7 +72,7 @@ again.
|
|||
Kind regards,
|
||||
the voting system
|
||||
BODY;
|
||||
$db->notify("Re: $tag - $title",$body);
|
||||
$db->notify("Re: $tag - $title - modified",$body,$tag);
|
||||
} else {
|
||||
?>
|
||||
<b>The motion has NOT been proposed!</b><br/>
|
||||
|
@ -127,7 +127,7 @@ Abstain: $voteurl&vote=0
|
|||
Kind regards,
|
||||
the voting system
|
||||
BODY;
|
||||
$db->notify("$tag - $title",$body);
|
||||
$db->notify("$tag - $title",$body,$tag,TRUE);
|
||||
} else {
|
||||
?>
|
||||
<b>The motion has NOT been proposed!</b><br/>
|
||||
|
|
|
@ -28,7 +28,7 @@ $content
|
|||
Kind regards,
|
||||
the voting system
|
||||
BODY;
|
||||
$db->notify("Re: $tag - $title - withdrawn",$body);
|
||||
$db->notify("Re: $tag - $title - withdrawn",$body,$tag);
|
||||
}
|
||||
$stmt = $db->getStatement("close decision");
|
||||
$status = -2;
|
||||
|
|
|
@ -80,7 +80,7 @@ Kind regards,
|
|||
the vote system
|
||||
|
||||
BODY;
|
||||
$db->notify("Re: $tag - $title",$body);
|
||||
$db->notify("Re: $tag - $title",$body,$tag);
|
||||
} else {
|
||||
?>
|
||||
<b>The vote has NOT been registered.</b><br/>
|
||||
|
|
2
vote.php
2
vote.php
|
@ -64,7 +64,7 @@ Kind regards,
|
|||
the vote system
|
||||
|
||||
BODY;
|
||||
//$db->notify("Re: $tag - $title",$body);
|
||||
//$db->notify("Re: $tag - $title",$body,$tag);
|
||||
} else {
|
||||
?>
|
||||
<b>Your vote has NOT been registered.</b><br/>
|
||||
|
|
Loading…
Reference in a new issue