Email footer copyright date | Community
Skip to main content
January 21, 2022
Solved

Email footer copyright date

  • January 21, 2022
  • 1 reply
  • 1845 views

Hi! 

In previous email distribution platforms that I have used, there has been a tag to use in the footer that would automatically stamp the copyright year to the current year from the server date.  

 

So for instance the footer has a "copyright 2022 BrandName".   Is there a tag that would automate this like "copyright {{dateTag}} BrandName"

I have searched around but can not seem to find anything for the job.  Does anybody know if one exists for Adobe Campaign emails?

Thanks in advance!


This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by Amine_Abedour

Hi,

 

you can use JavaScript to do this.

Try " copyright <%= formatDate(new Date(), "%4Y") %> BrandName" .

 

Br,

 

Amine

1 reply

Amine_Abedour
Community Advisor
Amine_AbedourCommunity AdvisorAccepted solution
Community Advisor
January 23, 2022

Hi,

 

you can use JavaScript to do this.

Try " copyright <%= formatDate(new Date(), "%4Y") %> BrandName" .

 

Br,

 

Amine

Amine ABEDOUR
January 25, 2022

Hey,

 

Thanks for this.  As Javascript is not supported in email.  Would this be stamped on send by the Campaign, rather than rendered in the email?

 

 

Thanks!

Amine_Abedour
Community Advisor
Community Advisor
January 25, 2022

Hello @perryclarkdev 

 

Yes, Adobe Campaign will execute the javascript during the personalization phase and replace it with the actual year in the email before sending it.

 

Br,

 

Amine

Amine ABEDOUR