Email Marketing Tool

DinithiAbeysiri
Contributeur

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

Résolue

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 Votes
1 Solution acceptée
DinithiAbeysiri
Solution
Contributeur

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

Résolue

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

 

Voir la solution dans l'envoi d'origine

0 Votes
2 Réponses
DinithiAbeysiri
Solution
Contributeur

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

Résolue

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 Votes
jessreilley
Participant

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

Résolue

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 Votes