Badges
Accepted Solutions
Likes Received
Posts
Discussions
Ideas
Blog Posts
Hey @SanfordWhiteman Thanks for the response 🙂 I am able to fetch the End time using the below script:## EndTime ###set( $myCal = $convert.toCalendar($Appointment_Start))$myCal.add(12,30)#set($FormattedEndTime = $date.format("h:mm", $myCal.time))## EndTime ## Regarding the TimeZone, I will recei...
Hey, I want to display Meeting StartTime and End time (Total Meeting time is 30 minutes) like Tuesday, May 18, 10:00 -- 10:30 am EDTThe field I am using is 'Appointment_Start_DateTime_Text__c' (DataType = Text). The value of the 'Appointment_Start_DateTime_Text__c' is '05/03/2021 10:00:00 AM EDT'#fo...
YesThat Mytoken is used in the Email content.
The StartDateTime value is like 2021-04-06 17:00:00 in Marketo.I want to fetch the records for 6th Day.Does is calculate with date and Time both or only for Date difference for any of the future recordsHow does condition work For DateTime data type custom field in the Smart list? And if I want to ad...
Mytoken is used in the email content and sometime happens that Smart campaign qualifying the records but Mytoken with the empty value. Thus, Email preview with the empty space. Is there any way to check if the Mytoken value is empty, not sending the email to that record?
Hey @SanfordWhiteman ,Below is the screenshot of Array without filter. I hope this is what you are referring.PS: There are more than 10 meetings of a single record which could not be covered in this screenshot.
Hello,We have a Mytoken added in the email content which pulls the Meeting details(Date and Time) of an appointment. We have faced scenarios where the sometimes Mytoken doesn't pull any value and sends out the email blank(with empty space of Mytoken value). Is there any way we can stop the email whe...
@SanfordWhiteman, For your reference, the business context and data here is like we have multiple meeting details for the future appointments and the mytoken is pulling those meetings based on lag difference. Here we figured out that if we have more than 10 meetings in line, Marketo only takes 10 M...
#set($x = $date.calendar)##$Activity_Marketo__cList.size()##$Activity_Marketo__cList #foreach($Meeting in $Activity_Marketo__cList)#set($Appointment_Start = $date.toDate("MM/dd/yyyy hh:mm:ss a", $Meeting.Appointment_Start_DateTime_Text__c))#set($is_upcoming = $date.difference($x.time,$Appointment_...
Hey @SanfordWhiteman ,I am able to fetch the correct meeting value as per the days difference from the multiple Meeting date but I want to change the format of it like Friday, Mar. 05 at 12:00 AM Appointment_Start_DateTime_Text__c is the text data type attribute. The value store in this like : 03/05...