Hi,
Found a Major bug with addautoresponder. If there is any comma in the message it won´t work. I almost went nuts because it was working sometimes, and others don´t
This is what I´ve tried
Code:
$args =array($email_account,
"TESTES",
"Out of Office - %subject%",
"for any subject please contact my colleague yyyyyyy (zzzz.zzzz@xxxxx.com)",
$email_domain,
true,
"ISO-8859-1",
8
);
$result=$xmlapi->api1_query($account, "Email", "addautoresponder",$args);
var_dump($result);
this works, but if you change the message to
"for any subject, please contact my colleague yyyyyyy(zzzz.zzzz@xxxxx.com)"
It won´t create the autoresponder (notice the comma after the 'subject')
I was finishing development when I found this, so I´m stuck.
Any workaround or a way to fix this ?
Thanks