@Anuhya-Y
setHours will not work as the function is expecting a number representing the hour (0-23) and is use to force the hour of your date.
Thanks,
David
@AvinashNa1
use
(toDateTimeOnly(<eventDate>)) + (toDuration("P2D"))
or
(toDateTimeOnly(<eventDate>)) + (toDuration("PT48H"))
Another approach is to use 2 wait activities (in case you have less than 50 activities)
first wait with custom wait toDateTimeOnly(<eventDate>) and second wait with durat...
I noticed a similar behavior when sending to my work email vs personal email. The reason can be your email server is doing an additional verification and delivering the email late. Also some domain such as comcast can show delay because of the throughput or throttle traffic from the AJO IP
You can...
@karthikeyanS2301
As the domain showed in your screenshot, I will recommend to check if the users didn't unsubscribe from the one-click or header unsubscribe.
Thanks,
David
@RS195
in AJO a profile can only be once in a journey so you won't be able to send two separate emails from the same journey by using the customer as identity.
work around:
Use accounts as identity: pros, you will be able to achieve your use case. cons, it will increase your profile countsUse cus...
@RS195
Hi Sai,
your code is missing data-tracking-type="OPT_OUT". If not mentioned, Adobe will consider there is no opt-out link in the email but it's only a warning and not a blocker.
As your opt-out is handled outside AJO, you can select External Opt-out
Thanks,
David
@LAR1985
Unqualified address is used for Direct Mail and the formula is based on an expression on the recipient schema.
<attribute expr="AllNonNull3([../location/@zipCode], [../location/@city], [../@lastName])"
name="addrDefined"/>
Bad quality address, it's specific ...
@AK5
you can replicate the same logic for lastnameconcat(upper(substr('JOHN', 0, 1)),lower(substr('JOHN',1))) +' '+concat(upper(substr('SMITH', 0, 1)),lower(substr('SMITH',1)))