Hi, I did this one on a non-hosted Message Center setup by redirecting DNS to an MTA that accepted everything (blackbox testing).For hosted probably easiest way is to alter the nms:messageCenter.js code, nms_rtEvent_PushEvent(), to hardcode the address instead of using the strEmail param. Thanks,-Jo...
Hi, The purpose of those activities is to pause the workflow until a designated time or signal resumes it.The workflow state itself is still 'Started' right? Thanks,-Jon
Hi, In an xtk expression? You'd have to use a long chain of decode's or iif's. Assuming Day() counts from 1:decode(Day(@date), 1, 'Sun', decode(Day(@date), 2, 'Mon', decode(Day(@date), 3, 'Tue', ...)))) Thanks,-Jon
Hi, Yes, I did this once with url's and a parameterized jssp page.User clicks the link, which then loads the ics for them with the appropriate content-type header. Thanks,-Jon
JS would be for web app, question wasn't clear. For email you can only use double-redirect, which would be a tracking redirect pointing to a webpage consisting of a single <meta http-equiv="refresh" content="0; url=tel:18001234567"> tag.
Hi, FDA connector should have what you're looking for. Installation guide here:https://docs.adobe.com/content/help/en/campaign-classic/using/getting-started/connectors/accessing-an-external-database.html#configure-access-to-hadoop The access rights matrix hasn't been updated for Hive but should foll...
Hi, Export anything or groups of things to an xml file, use vs code or notepad++ to make changes (usually find/replace-all), then import the xml file.For marketers coming from a non-technical background this one trick (consultants hate him!) can cut vast amounts of manual effort and associated error...
Hi, Raw data's in nms:trackingLogRcp, cube aggregates are stashed in nms:group.You can duplicate opensByUserAgent report and change to match new reqs, though prob easier to just do a manual count/group-by on the log table directly.I wonder how the cubes are impacted by retention windows, default for...
Hi, The JS is: new Date() - new Date(ctx.vars.OfferDate) Be aware that you're comparing 2 clocks here- the one on the db server and the one on the app server.A more consistent approach would be to do the math on the db: DaysAgo(@Offer_Date) or whichever resolution is desired. Thanks,-Jon