Hi,
I'd like to make a PHP condition in my email template but the string length is strange...
What can I do ?
I'd like to make a PHP condition in my email template but the string length is strange...
<?php
var_dump('atelier');
// string(7) "atelier" : OK
var_dump('{profil}');
// string(8) "atelier" : strange!
var_dump('{profil}' == 'atelier');
// bool(false)
?>
What can I do ?