我已经在Marketo中选择了日期字段,它使用日历让您选择所需的日期。
我希望这个文件默认为"今天"日期,除非用户更改?
这能做到吗?我在尝试FieldID = {{system.date}}
但是它似乎没有在字段中输入当前日期,除非你通过日历选择它
下面是一个示例脚本,您可以在Marketo中使用它将今天的日期作为令牌输出:
## Access Velocity's calendar object
#set($x = $date.calendar)
## Format date
#set($current_date = $date.format('dd-MM-yyyy', $x.getTime()))
## Returns today's date
$current_date
有关使用令牌脚本的更多信息,请参阅Marketo的开发人员文档。