Guest User

Untitled

a guest
Dec 14th, 2017
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. <html>
  2. <head>
  3. %%[
  4. SET @firstname = FirstName
  5. SET @SalutationA = "Hey, @firstname! Here's this week's content"
  6. SET @SalutationB = "Here's this week's content"
  7.  
  8. IF @firstname = "" THEN
  9. SET @text = @SalutationB
  10. ELSE
  11. SET @text = @SalutationA
  12. ENDIF
  13.  
  14. ]%%
  15.  
  16. </head>
  17. <body>
  18. <p>%%=v(@text)=%%</p>
  19. </body>
  20. </html>
Add Comment
Please, Sign In to add comment