SOLVED

Looking to add a unique certificate (PDF) to emails

Go to solution
Zoe_Forman
Level 7 - Community Advisor + Adobe Champion

Looking to add a unique certificate (PDF) to emails

 I have 50 people at a time who have completed a training course and want to send out certificates in  Marketo email.

 

Each certificate will be personalised with person's name and date completed.

 

I can create and host the PDF certificates in WebDam with a unique URL.

 

Can we match the URL link of the certificate using the person's name and add in the email?

 

Maybe tokens? Custom field in list upload?

 

Unless adding attachments with Marketo emails is coming soon?

 

1 ACCEPTED SOLUTION

Accepted Solutions
SanfordWhiteman
Level 10 - Community Moderator

Re: Looking to add a unique certificate (PDF) to emails


Can we match the URL link of the certificate using the person's name and add in the email? Maybe tokens? Custom field in list upload?

It’s up to you. I wouldn’t use the person’s full name because that’s not unique. The Email Address field can be included in the link, but (most people don’t understand this) you can’t just use the {{lead.Email Address}} token because it’s not URL-encoded.

You need to instead use a short Velocity {{my.token}} like so:

<a href="https://whatever.example.com?email=${esc.url($lead.Email)}">Get your PDF</a>

 

 

Unless adding attachments with Marketo emails is coming soon?

Certainly not (which is a good thing for everyone!).

View solution in original post

2 REPLIES 2
SanfordWhiteman
Level 10 - Community Moderator

Re: Looking to add a unique certificate (PDF) to emails


Can we match the URL link of the certificate using the person's name and add in the email? Maybe tokens? Custom field in list upload?

It’s up to you. I wouldn’t use the person’s full name because that’s not unique. The Email Address field can be included in the link, but (most people don’t understand this) you can’t just use the {{lead.Email Address}} token because it’s not URL-encoded.

You need to instead use a short Velocity {{my.token}} like so:

<a href="https://whatever.example.com?email=${esc.url($lead.Email)}">Get your PDF</a>

 

 

Unless adding attachments with Marketo emails is coming soon?

Certainly not (which is a good thing for everyone!).

Zoe_Forman
Level 7 - Community Advisor + Adobe Champion

Re: Looking to add a unique certificate (PDF) to emails

Thanks Sandford - velocity script is something new for me, but I will certainly experiment and give it a try