Badges
Accepted Solutions
Likes Received
Posts
Discussions
Ideas
Blog Posts
What I mean by "working correctly" is as follows: PreconditionUser A : 1 Opportunity(X) in the OpportunityList , which has Field93__c (May 1st, 2023). User B : 2 Opportunity (Y, Z) in the OpportunityList, Opportunity Z has Field93__c (May 1st, 2023). Expected behaviorUser A : 2023年11月1日 should be...
Please forgive my lack of knowledge as I have just started coding the script. I'm trying to create the script token which retrieves the date "Field93__c" in $OpportunityList and show the date which is 6 month after the date of "Field93__c".But the below script can work for the lead which has the on...
HI I have updated my script as follows. However, it does not work even if the lead has one opportunity.. Could you advise?#set( $defaultTimeZone = $date.getTimeZone().getTimeZone("Asia/Tokyo") )#set( $defaultLocale = $date.getLocale() )#set( $calNow = $date.getCalendar() )#set( $ret = $calNow.setTi...
I want to do the followingIf the lead has the date data of "Field93__c" in the one of the opportunity in the $OpportunityList, I would like to show 6 month after date of it. And if the lead does not have date data in the any opportunity in the $OpportunityList, I would like to show the text "Contact...
I want to do the following If the lead has the date data of"Field93__c" in $OpportunityList, I would like to show 2 month after date of it.If they do not have, I would like to show the text "Contact Customer Support".I created the following script token #set( $defaultTimeZone = $date.getTimeZone().g...
I would like to reflect the latest # of users in the mail contents every time I send the mail for the mail campaign (this e-mail will be sent every 2 weeks), I would like to do the following: 1. Share the google sheet which includes # of users2. Fetch the E13 cell data in the Google sheet via scrip...
Hi Sandy,It works as expected. Thank you for your support.
HI Sandy Thank you for your comment.Could you check the below?-- PurposeTo send the marketing campaign promotion to the customers who terminates the contract e.g. The customer A : terminate the contract Jan. 1stSend the mail B on Feb 1stIn the mail B, I want to include the following statementThe spe...
Thank you Sandy and Darshil, #set($calNow = $sorter.sort($OpportunityList,"LastActivityDate"))But how should I add 2 months to ${calNow[0]}, because based on the Velocitips: Switch email content based on day/time which you shared, I tried by using "Promo expires 7 days from today" as reference, but ...
Is it possible to create a date script token in an e-mail which shows 2 months after from the last activity date?I understand I can get the last activity date as OpportunityList.get(0).LastActivityDate.