Hello Everyone,
I have an email which is to be sent periodically, I was wondering if there is a way to automatically fetch the current month/last month/current year. Much like a token would do. I tried to google it but I could only find it could be done using Email Scripting Token.
My email line reads like this:
"Please submit any pending reports for upload for the month of <Last Month>. The last date for submission is 10th, <Current Month> <Current Year>."
Is there any way it can fetch the information automatically.
Thank you in advance.
Harshit
Solved! Go to Solution.
Hi Harshit,
#set($calendar = $date.getCalendar())
$calendar.add(2,-1)
$date.format('MMMM',$calendar)
(come back and mark me as correct if this works for you).
#set($calendar = $date.getCalendar()) //get a calendar
$calendar.add(2,-1) //use the calendar add tool, init month (2) and -1
$date.format('MMMM',$calendar) //display the date in the format MMMM
When i'm trying to use the token {{system.dateYear}} in the email, it shows Token key not found error. Do i need to do any extra step to enable this token in the instance?
I don't think the token actually exists. You still need to use the standard method (Velocity in emails, JS on pages).
Hey @SanfordWhiteman Just signed up for your updates. Was looking through the blog. Any plans to add a search feature?? Great stuff, thank you!
Weird, I didn't get notification of your signup (usually do).
Anyway... yes. The search. How I dearly wish it were simple to customize the Ghost theme for that. Someday! Is there something you were going to search for? I have a good memory. 🙂
Nothing in particular. There's just tons of information and it would be cool to be able to pull up specific topics. I'm not looking a gift horse in the mouth, though. It's a treasure chest, search or no search.
Hi Harshit Pandey,
You can find it on the developer website. Find the link below:
http://developers.marketo.com/documentation/velocity-script/
Hope this helps.
Hello Ravi,
I was able to fetch the current month and year using the velocity script: $date.get('MMMM, yyyy')
However I am not able to fetch the "last month". Could you help me with the script to do so?
Thanks,
Harshit
Hi Harshit,
#set($calendar = $date.getCalendar())
$calendar.add(2,-1)
$date.format('MMMM',$calendar)
(come back and mark me as correct if this works for you).
#set($calendar = $date.getCalendar()) //get a calendar
$calendar.add(2,-1) //use the calendar add tool, init month (2) and -1
$date.format('MMMM',$calendar) //display the date in the format MMMM
Hey Nicholas,
You are the savior, it worked like a charm.
Thank you so much
Harshit
Hey Ravi,
Thank you for your prompt response, however I do not have any exposure to scripting and such so I was wondering if anyone could help me with the script itself so I could place it in custom token. Any help will be much appreciated.
Thank you for your time.
Hello Harshit,
The easiest way to do this is through the Velocity email scripting. There is no Marketo UI for this functionality.
Best,
Pavel
Hello Pavel,
I was able to fetch the current month and year using the velocity script: $date.get('MMMM, yyyy')
However I am not able to fetch the "last month". Could you help me with the script to do so?
Thanks,
Harshit
Hello Pavel,
The velocity email scripting link is not accessible from the Marketo doc, is there any other document or link which could guide?
Thanks,
Harshit