Dynamic Emails
Hello Community,
I have been asked to build out a dynamic email. I know we have a module inside Eloqua named 'Dynamic Content' which just does it but I am used to a slightly different approach so wondering if anyone has a similar solution. I was working on Salesforce Marketing Cloud earlier and we were using AmpScript to achieve this. The following example illustrates this:
%%[IF @Datebase_Field == 'ValueX' THEN]%%
//Serve this piece of content
%%[ELSEIF @Datebase_Field == 'ValueY' THEN]%%
//Serve this piece of content
%%[ELSEIF @Datebase_Field == 'ValueZ' THEN]%%
//Serve this piece of content
%%[ELSE]%%
//Serve this piece of content
0