10 lines
269 B
PHP
10 lines
269 B
PHP
<?php
|
|
|
|
class RsvEmailTemplater {
|
|
public function render(string $template, array $data) : string {
|
|
return preg_replace_callback('/{{\s*(\w+)\s*}}/', function($matches) use ($data) {
|
|
return $data[$matches[1]] ?? '';
|
|
}, $template);
|
|
}
|
|
}
|