Email template where just the address changes

Hi Text Blaze Community! I'm new here having just bought the Pro version and I'm a bit overwhelmed trying to scan through the knowledge here looking for an answer to my question, so I was hoping this post could help.

I regularly send out an email which is the same email but only the address changes sometimes. It looks something like this:

"Hi, we have some people close by that can help. Here is their address....."
(Their closest address)
"Thanks for contacting us....."

There are about 30 different addresses to choose from. Instead of doing 30 snippets with the 30 different addresses, is there a way where I can just do the one email and auto-insert the address I require from somewhere?

I hope this makes sense, thanks so much for reading :slightly_smiling_face:

1 Like

Hi @duckinbox and welcome to the community forum.

Two potential ways to do this.

  1. Store the different addresses in a dropdown menu like this:

Hi, we have some people close by that can help. Here is their address.....
{formmenu: address 1; address 2; address 3; address 4}
Thanks for contacting us.....

  1. Store the address in a Data Blaze table and read one from your snippet

Hi, we have some people close by that can help. Here is their address.....
{dbselect: SELECT `Street address`, city, `zip code` FROM Addresses; space=id; menu=yes}
{=`Street address`}, {=city} {=`zip code`}
Thanks for contacting us.....

3 Likes

That's amazing, thanks so much @Dan_Barak1 much appreciated :pray:

1 Like