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
2 Replies 2
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
jessreilley
Participant

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

SOLVE

Thank you for sharing this solution, @DinithiAbeysiri! When you embed the image this way, are you and/or the user able to see the image in the email? I have tried this solution, but I get a broken image link in the email. 

cg-broken-image.jpg

Interestingly, when you right click on the broken image, you can view it in a browser. I've checked my code, verified that I can see image previews in my email client, etc. I'd love to learn how you got this to work! Thanks for your help.

 

0 Upvotes