+44 (0) 1603 937800 — Mon to Fri, 9am to 5pm UK time (currently 8:53am in the UK)
A - A - A

Launch of our Dormant Asset Guidebook

Chloe Tindall    7th April, 2025

We at TTG are thrilled to introduce our Dormant Asset Guidebook. This invaluable resource is perfect for anyone managing dormant assets, accounts, goneaways, or unpaid deceased customers.

Our guidebook offers comprehensive insights and practical strategies to effectively handle these challenges, ensuring you can manage dormant assets with confidence and efficiency. Whether you're a seasoned professional or new to the field, this guidebook is designed to support your needs.

If you're interested in obtaining a copy, please click the link below and register to receive your guidebook today!

https://www.thetracinggroup.co.uk/dormant-assets-whitepaper

function submitForm(formId) { event.preventDefault(); var originalButtonText = document.getElementById("submitButton").innerHTML; document.getElementById("submitButton").innerHTML = ' Sending...'; document.getElementById("submitButton").disabled = true; const form = document.getElementById(formId); const formData = new FormData(form); fetch('/api/contact', { method: 'POST', body: formData }) .then(response => { document.getElementById("submitButton").innerHTML = originalButtonText; document.getElementById("submitButton").disabled = false; if(response.ok) { form.classList.remove('fail'); form.classList.remove('ratelimit'); form.classList.add('success'); form.reset(); } else if(response.status === 429) { form.classList.remove('success'); form.classList.remove('fail'); form.classList.add('ratelimit'); } else { form.classList.remove('success'); form.classList.remove('ratelimit'); form.classList.add('fail'); } }); }