Skip to main content
Solved

Add the same email attachment to every automated response


Mike_Shaw1
Forum|alt.badge.img+9

I have a Form that is submitted and an automation to respond with the same attachments to every form requestor. I realize I cannot add just a add a PDF straight to that field in the automation for emails. SO My question is how do I somehow get it to pull up and attach the same document to every form request? I am wondering also what it means to add an attachment via Table and Field Id’s , can i reference an attachment in a certain record? : These are the options on what I can add as an email attachment.

 

 

Best answer by ScottWorld

First, you would need to store your attachment in one particular record. Ideally, this record would be in a separate table that is dedicated to storing attachments.

Then, you have a few different options:

  1. In your automation, you could perform a “find records” action to search for that one particular record, then refer to the attachment field from that found record to insert into the attachment section of your email.

    or
     
  2. You can create a fake “global field” in your base, which will automatically attach the same attachment from the attachment table to every record in your original table using a lookup field. I give step-by-step instructions on this technique in this Airtable podcast episode.

    or
     
  3. If your attachment is an image file (not a PDF file nor other type of document), you can publicly host the image on the web and use HTML code to embed the image into the message body. I discuss how to do this in this thread.

    or
     
  4. If you use Make’s advanced automations for Airtable, you can use any of the methods outlined above, but you also have the additional option of publicly hosting any sort of file that you’d like (PDF file, Word document, image file, etc.), and then using Make’s Get A File module to download the file and attach it to any outgoing emails.

    If you’ve never used Make before, I’ve assembled a bunch of Make training resources in this thread. For example, here is one of the ways that you could instantly trigger a Make automation from Airtable.

Hope this helps! If you’d like to hire the best Airtable consultant to help you with anything Airtable-related, please feel free to contact me through my website: Airtable consultant — ScottWorld

View original
Did this topic help you find an answer to your question?

8 replies

ScottWorld
Forum|alt.badge.img+33
  • Brainy
  • 8779 replies
  • Answer
  • March 30, 2025

First, you would need to store your attachment in one particular record. Ideally, this record would be in a separate table that is dedicated to storing attachments.

Then, you have a few different options:

  1. In your automation, you could perform a “find records” action to search for that one particular record, then refer to the attachment field from that found record to insert into the attachment section of your email.

    or
     
  2. You can create a fake “global field” in your base, which will automatically attach the same attachment from the attachment table to every record in your original table using a lookup field. I give step-by-step instructions on this technique in this Airtable podcast episode.

    or
     
  3. If your attachment is an image file (not a PDF file nor other type of document), you can publicly host the image on the web and use HTML code to embed the image into the message body. I discuss how to do this in this thread.

    or
     
  4. If you use Make’s advanced automations for Airtable, you can use any of the methods outlined above, but you also have the additional option of publicly hosting any sort of file that you’d like (PDF file, Word document, image file, etc.), and then using Make’s Get A File module to download the file and attach it to any outgoing emails.

    If you’ve never used Make before, I’ve assembled a bunch of Make training resources in this thread. For example, here is one of the ways that you could instantly trigger a Make automation from Airtable.

Hope this helps! If you’d like to hire the best Airtable consultant to help you with anything Airtable-related, please feel free to contact me through my website: Airtable consultant — ScottWorld


Mike_AutomaticN
Forum|alt.badge.img+21

Hey ​@Mike_Shaw1!

@ScottWorld  answer is spot on.
Just as an additional comment, please note that as shown under Base Schema on your screenshot, that will only show you table and field IDs (but not any value for any record for such tables or fields).

That means that you would not be able to get the attachment directly from Base Schema. You could however have a script that will fetch the table, fetch the field, fetch a specific record, and get the attachment. But that does not seem needed as you can build smth similar without writing code.

Mike, Consultant @ Automatic Nation


ScottWorld
Forum|alt.badge.img+33
  • Brainy
  • 8779 replies
  • March 30, 2025

Ah yes, scripting is a 5th option that you can use here, too! I don’t know scripting myself, so I often forget about scripting. Thanks, ​@Mike_AutomaticN!

- ScottWorld, Expert Airtable Consultant 


TheTimeSavingCo
Forum|alt.badge.img+28

I’d recommend creating a new table to store the attachments / images and then sending out the attachment via a lookup field.  For your context, you’d trigger the automation when the form gets submitted, and the automation would find the appropriate attachment record, link them together, and then send the email out in the same automation

I’ve set it up here for you to check out!

 

Attachment / image storage:

 

Form submissions + lookup field

 

Automation:


ScottWorld
Forum|alt.badge.img+33
  • Brainy
  • 8779 replies
  • March 31, 2025

That’s exactly what I already outlined in my #2 solution above, with an entire Airtable podcast segment dedicated to explaining it.

However, for many people, my solution #1 will be easier and more efficient.

Hope this helps! If you’d like to hire the best Airtable consultant to help you with anything Airtable-related, please feel free to contact me through my website: Airtable consultant — ScottWorld 


Mike_AutomaticN
Forum|alt.badge.img+21

However in that case, the “signature” would be attached rather than rendered on the email itself. Right ​@ScottWorld ​@TheTimeSavingCo?

Using Airtable’s attachment url is also not an option, as it is temporal.


ScottWorld
Forum|alt.badge.img+33
  • Brainy
  • 8779 replies
  • March 31, 2025

@Mike_AutomaticN That’s a great point… that option would only work if you attach the signature field to the attachment field, not if you embed it via HTML in the message.


Mike_Shaw1
Forum|alt.badge.img+9
  • Author
  • 34 replies
  • March 31, 2025

@ScottWorld Thanks so much for that, Opt 1 was the ticket and ​@Mike_AutomaticN thanks for the details. ​
It should have been obvious but I focus on Dynamic variables in my automation and so Static Lookup was not on my mind. @TheTimeSavingCo thanks for the mock up! Luckily I already have a “Digital Assets Library” table and added these PDF’s too it, and it works perfect! 🤘🙌. I found Airtable in 2020 and have built it out to run/manage my whole mortgage business, a know enough to be dangerous so thanks again all! (this application was for an Open House flyer with a QR Code to my Airtable form  so they can get  a free report and loan options and me gather a lead.)


Reply