Skip to main content

This site requires you to update your browser. Your browsing experience maybe affected by not having the most up to date version.

We've moved the forum!

Please use forum.silverstripe.org for any new questions (announcement).
The forum archive will stick around, but will be read only.

You can also use our Slack channel or StackOverflow to ask for help.
Check out our community overview for more options to contribute.

General Questions /

General questions about getting started with SilverStripe that don't fit in any of the categories above.

Moderators: martimiz, Sean, Ed, biapar, Willr, Ingo, swaiba

Email ParseVariables 2.4


Go to End


874 Views

Avatar
Gene

Community Member, 41 Posts

1 July 2010 at 9:19am

Why was this removed from the ParseVariables method in the Email class for 2.4...

foreach(array('from','to','subject','body', 'plaintext_body', 'cc', 'bcc') as $param) {
	$template = SSViewer::fromString($this->$param);
	$this->$param = $template->process($data);
}

It was handy being able to have dynamic variables in the subject line, etc.