We'd like to have a big marketing push to increase the number of Gift Aid declarations we have on file: it's worth a lot of money to us.
Has anyone achieved this? Ideally, I'd like to be able to get people to update their GA preferences directly within the application, but as we're on TNEW I don't think this is possible without a hefty degree of customisation.
Anyone want to tell me I'm wrong and that it's dead easy...? Has anyone done this before? If so, what did you learn?
C.//X.
Hi Chris
We have done a few Gift Aid drives and found them very worthwhile but we don't currently have Gift Aid declarations online or any way for customers to amend their Gift Aid status on the website so it was all postal but paid for itself through the increased amount we could claim.
Karen
Thought as much. Ultimately, I’m opting for an online survey-style affair… I think it’ll have a higher take-up, especially as you won’t need to be logged into Tessitura to make it happen. Hmmmm. Thanks for getting back to me! C.// X.
From: Tessitura Finance Forum [mailto:forums-finance@tessituranetwork.com] On Behalf Of Karen McCarthy Sent: 20 March 2015 15:47 To: Chris Campbell Subject: Re: [Tessitura Finance Forum] Gift Aid - seeking new declarations in bulk
From: Chris Campbell <bounce-chriscampbell8862@tessituranetwork.com> Sent: 3/20/2015 8:32:00 AM
C.// X.
This message was sent automatically to you by www.tessituranetwork.com because you subscribed to the Tessitura Finance Forum. You may reply to this message to post to the Finance forum or visit the site to search, read and post to the forums. In the interest of keeping the forum posts from becoming cluttered, we encourage you to delete previous message text from your reply before sending. Thank you!
Our Development department have done this using Wordfly emails, as I have amended our LP_UPDATE_EMAIL_PROMOTION to look for click throughs on two urls (a yes and no) to quickly add a gift aid declaration to their accounts. As Wordfly passes in customer number etc mean customer doesn't need to login, the pages are static html as there is no need for code on the page and so Wordfly and the SP do all the work. Also add a check in to see if a customer was changign their declaration status and send an email to the dev team to investigate.
If @response_code = 4
Begin
If @url in ( 'http://www.nationaltheatre.org.uk/yestogiftaid','http://www.nationaltheatre.org.uk/notogiftaid')
if @url='http://www.nationaltheatre.org.uk/yestogiftaid'
begin
select @declare='Y'
end
else
select @declare='N'
if not exists (select 1 from T_GIFTAID_DECLARATION (NOLOCK) where customer_no=@customer_no)
Execute @ga_decl_no = AP_Get_NextID_function 'GD'
insert into T_GIFTAID_DECLARATION(ga_declaration_no, customer_no,giftaid_type,eligible_ind,contact_method,document_status,recd_dt,start_dt, ineligible_reason)
select @ga_decl_no,@customer_no,1,@declare,3,6,getdate(),dateadd(year,-4,GETDATE()), case when @declare='N' then 5 else 0 end
end else
if exists (select 1 from T_GIFTAID_DECLARATION (NOLOCK) where customer_no=@customer_no and eligible_ind<>@declare)
select @subject='Email Gift Aid Declaration Eligible (' + @declare +') for customer ' + convert(varchar(10), @customer_no),
@body = 'Customer ' + convert(varchar(10), @customer_no) + ' has submitted a second declaration but this time set Eligible to ' + @declare +'.
Please check this account.
Thank you'
exec msdb.dbo.sp_send_dbmail
@recipients='devteam',
@subject = @subject,
@body = @body,
@body_format = 'TEXT'
End
*Gasp* That’s super-smart. What a brilliant idea! You are a very clever cookie, Mark Ridley. I shall investigate immediately! C.// X.
From: Tessitura Finance Forum [mailto:forums-finance@tessituranetwork.com] On Behalf Of Mark Ridley Sent: 23 March 2015 08:05 To: Chris Campbell Subject: RE: [Tessitura Finance Forum] Gift Aid - seeking new declarations in bulk
From: Chris Campbell <bounce-chriscampbell8862@tessituranetwork.com> Sent: 3/20/2015 3:56:26 PM
Hi Mark,
I just found this answer and wow! Exactly what I was looking for – thank you!
Your help now would be amazing if you have a few minutes…
Basically, we are looking to do a very similar drive to secure retrospective Gift Aid declarations in bulk, by contacting all our UK customer who have made an online donation in the past 4 years but who for whatever reason, left the Gift Aid box unticked.
My questions are:
- We also have Wordfly so I imagine we could do something similar to what you did with the links to two URLs (Y/N)?
- Does that then update their Tessitura accounts or does it need to be done manually? I’m not sure what SP is but I’ll check that we have that also.
- In an ideal world, we’d love to be able to do this fully-automated, although if we could update in bulk by collecting declarations besides Tessitura numbers, that wouldn’t be too bad.
- GDPR: Would such a request by email be allowed in the post-GDPR era or would we need explicit consent to contact previous donors?
We really hope it’s possible as I think it would be really worthwhile. On the initial pilot alone there’d be about 15,000 customers and it would give us an easy template to follow in future on a more regular basis.
Thank you so much in advance for any advice.
Nick
1. If you use wordfly then Yes, you can do this
2.This automatically updates their record. My code assumes that there is no declaration at all on their record so you may need to adjust the code if you are also trying to renew expired declarations.Essentially when you promote and track source number using Wordfly they update Tessitura and as part of this update the LP_UPDATE_EMAIL_PROMOTION stored procedure is called (standard wordfly local procedure so should be in your DB).They pass in source number, customer number, url, response_code , response date time and email address to the procedure.In this case we need response code 4 URL Clicked, the URL and the customer number.The code checks to see if they already have a Declaration on their record, if they don't it adds one with their response. if they do and their response is now different then it emails someone in the dev team - did this just incase people clicked both links for whatever reason - as anyone emailed didn't have a declaration on the record to begin with.
3. It should be possible to fully automate this. If you can setup a list of everyone who has donated (during a set time) and doesn't have a gift aid declaration you can then use that list to trigger the email from wordfly
One other way of doing this would be to set an output set element of Has GA Declaration and then email all donors thanking them for their donation and then use the flag to only show a section of the email asking if they are eligible for Gift Aid when Has GA Declaration is N.
4.For GDPR would assume you could use legitimate interest, as it is a followup on the donation for completing legal/official documentation.
Mark