SOLVED

Re: Fetch Month/Year via Email Scripting

Go to solution
Anonymous
Not applicable

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

1 ACCEPTED SOLUTION
Nicholas_Manojl
Level 9

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

View solution in original post

13 REPLIES 13
DivyaChandran
Level 1

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?

SanfordWhiteman
Level 10 - Community Moderator

I don't think the token actually exists. You still need to use the standard method (Velocity in emails, JS on pages).

JimmySpencer_
Level 3 - Champion Alumni

Hey @SanfordWhiteman Just signed up for your updates. Was looking through the blog. Any plans to add a search feature?? Great stuff, thank you!

--Just a guy who knows enough to get into trouble--
SanfordWhiteman
Level 10 - Community Moderator

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. 🙂

JimmySpencer_
Level 3 - Champion Alumni

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.

--Just a guy who knows enough to get into trouble--
Ravi_Ansal2
Level 6

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.

Anonymous
Not applicable

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

Nicholas_Manojl
Level 9

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

Anonymous
Not applicable

Hey Nicholas,

You are the savior, it worked like a charm.

Thank you so much

Harshit

Anonymous
Not applicable

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.

Pavel_Plachky
Level 5

Hello Harshit,

The easiest way to do this is through the Velocity email scripting. There is no Marketo UI for this functionality.

Best,

Pavel

Anonymous
Not applicable

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

Anonymous
Not applicable

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