diff options
-rw-r--r-- | templates/emails/alert-confirm | 2 | ||||
-rw-r--r-- | templates/emails/problem-confirm | 5 | ||||
-rw-r--r-- | templates/emails/questionnaire | 8 | ||||
-rw-r--r-- | templates/emails/update-confirm | 5 | ||||
-rwxr-xr-x | web/questionnaire.cgi | 6 |
5 files changed, 18 insertions, 8 deletions
diff --git a/templates/emails/alert-confirm b/templates/emails/alert-confirm index 8cf3d5e40..bfa163fcc 100644 --- a/templates/emails/alert-confirm +++ b/templates/emails/alert-confirm @@ -10,5 +10,5 @@ asked to subscribe to on FixMyStreet: If you can't click the link, please copy and paste it to the address bar of your web browser. --- +Yours, The FixMyStreet team diff --git a/templates/emails/problem-confirm b/templates/emails/problem-confirm index bec176226..8d03ba91b 100644 --- a/templates/emails/problem-confirm +++ b/templates/emails/problem-confirm @@ -7,11 +7,14 @@ added to FixMyStreet: <?=$values['url']?> +If your email program does not let you click on this link, +copy and paste it into your web browser and press return. + Your problem had the title: <?=$values['title']?> And details: <?=$values['detail']?> --- +Yours, The FixMyStreet team diff --git a/templates/emails/questionnaire b/templates/emails/questionnaire index eae609fb8..617acc3d8 100644 --- a/templates/emails/questionnaire +++ b/templates/emails/questionnaire @@ -4,11 +4,15 @@ Hi <?=$values['name']?>, <?=$values['created']?> ago, you left a problem on FixMyStreet with the details provided at the end of this email. To keep our -site up to date and relevant, we'd appreciate it if you could fill in -this short questionnaire updating the status of your problem: +site up to date and relevant, we'd appreciate it if you could +follow the link below and fill in our short questionnaire +updating the status of your problem: <?=$values['url']?> +Please do not reply to this email; there is a public comment +box on the questionnaire. + Yours, The FixMyStreet team diff --git a/templates/emails/update-confirm b/templates/emails/update-confirm index c7a36019e..8e226a0bd 100644 --- a/templates/emails/update-confirm +++ b/templates/emails/update-confirm @@ -6,9 +6,12 @@ Please click on the link below to confirm the update you just wrote: <?=$values['url']?> +If you can't click the link, please copy and paste it to the +address bar of your web browser. + Your update reads: <?=$values['update']?> --- +Yours, The FixMyStreet team diff --git a/web/questionnaire.cgi b/web/questionnaire.cgi index 6419a497f..907e99396 100755 --- a/web/questionnaire.cgi +++ b/web/questionnaire.cgi @@ -6,7 +6,7 @@ # Copyright (c) 2007 UK Citizens Online Democracy. All rights reserved. # Email: matthew@mysociety.org. WWW: http://www.mysociety.org # -# $Id: questionnaire.cgi,v 1.23 2008-03-21 13:11:22 matthew Exp $ +# $Id: questionnaire.cgi,v 1.24 2008-03-21 14:11:14 matthew Exp $ use strict; use Standard; @@ -127,7 +127,7 @@ site and leave an update.</p> EOF } elsif ($new_state eq 'confirmed' || (!$new_state && $problem->{state} eq 'confirmed')) { return <<EOF; -<p style="font-size:200%">We're sorry to hear that. We have two suggestions: why not try +<p style="font-size:150%">We're sorry to hear that. We have two suggestions: why not try <a href="http://www.writetothem.com/">writing direct to your councillor(s)</a> or, if it's a problem that could be fixed by local people working together, why not <a href="http://www.pledgebank.com/new">make and publicise a pledge</a>? @@ -135,7 +135,7 @@ why not <a href="http://www.pledgebank.com/new">make and publicise a pledge</a>? EOF } else { $out = <<EOF; -<p style="font-size:200%">Thank you very much for filling in our questionnaire; glad to hear it's been fixed.</p> +<p style="font-size:150%">Thank you very much for filling in our questionnaire; glad to hear it's been fixed.</p> EOF } $out .= CrossSell::display_advert($q, $problem->{email}, $problem->{name}, |