diff options
author | Struan Donald <struan@exo.org.uk> | 2012-07-24 14:43:17 +0100 |
---|---|---|
committer | Struan Donald <struan@exo.org.uk> | 2012-07-24 14:43:17 +0100 |
commit | 8d9d08d0a32d93b653493c3735f35a6a8e494079 (patch) | |
tree | f2d5ce39494d073fc4cab9ded63350ea8a049085 /perllib/FixMyStreet/SendReport.pm | |
parent | 8809bfc5eb256221f2ddd8653e2ab26ce28d975a (diff) |
print out message about reports that we tried to send to unconfirmed email addresses
Diffstat (limited to 'perllib/FixMyStreet/SendReport.pm')
-rw-r--r-- | perllib/FixMyStreet/SendReport.pm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/perllib/FixMyStreet/SendReport.pm b/perllib/FixMyStreet/SendReport.pm index 66a31ffcc..f750ef479 100644 --- a/perllib/FixMyStreet/SendReport.pm +++ b/perllib/FixMyStreet/SendReport.pm @@ -12,6 +12,8 @@ has 'to' => ( is => 'rw', isa => 'ArrayRef', default => sub { [] } ); has 'success' => ( is => 'rw', isa => 'Bool', default => 0 ); has 'error' => ( is => 'rw', isa => 'Str', default => '' ); has 'skipped' => ( 'is' => 'rw', isa => 'Str', default => '' ); +has 'unconfirmed_counts' => ( 'is' => 'rw', isa => 'HashRef', default => sub { {} } ); +has 'unconfirmed_notes' => ( 'is' => 'rw', isa => 'HashRef', default => sub { {} } ); sub should_skip { |