Allow users to unsubscribe via email address, without logging in. Fixes bug #11559.

This commit is contained in:
Colin Kuskie 2010-05-18 15:58:24 -07:00
parent 22a6ce339e
commit f1ea8105d4
8 changed files with 221 additions and 27 deletions

View file

@ -199,6 +199,26 @@ our $HELP = {
related => [ ],
},
'collaboration unsubscribe template' => {
title => 'collaboration unsubscribe template title',
body => '',
fields => [],
isa => [],
variables => [
{ name => 'formHeader',
description => 'unsubscribe formHeader', },
{ name => 'formSubmit',
description => 'unsubscribe formSubmit', },
{ name => 'formEmail',
description => 'unsubscribe formEmail', },
{ name => 'formFooter',
description => 'unsubscribe formFooter', },
{ name => 'formMessage',
description => 'unsubscribe formMessage', },
],
related => [ ],
},
};
1;