Email Marketing Tool

DinithiAbeysiri
Contributor

Displaying the image file, which is captured in form submission, in the follow up email

SOLVE

Hi there,

One of our marketing campaigns have the requirement which allows participants to submit a selfie to go into a draw.

 

We use a HubSpot landing page with a HubSpot form that has the file upload property that would allow contacts to submit the image.

 

We would like to add this image to the follow up email (automated email send through a workflow). 

 

I tried addind the file upload property as a personalised token in the email but it only displays the link not the actual image/photo

 

Can someone help me out to set this up so that we can show the image instead? Is there an HTML code or something that we can use to show the image 

0 Upvotes
1 Accepted solution
DinithiAbeysiri
Solution
Contributor

Displaying the image file, which is captured in form submission, in the follow up email

SOLVE

Well found my own solution here for people having the same requirement.

  • Insert an Edit HTML module to email template
  • Use the code

<center><img src="{{ contact.upload_your_splash_screen_photo }}" alt="personalised image" width="500" height="500"></center>

 

NOTE: contact.upload_you_splash_screen_photo is the internal name of the custom file property used in the form to capture the image file upload

 

Happy to help out if anyone need more explanation

 

View solution in original post

0 Upvotes
1 Reply 1
DinithiAbeysiri
Solution
Contributor

Displaying the image file, which is captured in form submission, in the follow up email

SOLVE

Well found my own solution here for people having the same requirement.

  • Insert an Edit HTML module to email template
  • Use the code

<center><img src="{{ contact.upload_your_splash_screen_photo }}" alt="personalised image" width="500" height="500"></center>

 

NOTE: contact.upload_you_splash_screen_photo is the internal name of the custom file property used in the form to capture the image file upload

 

Happy to help out if anyone need more explanation

 

0 Upvotes