Hello,

I am making an extension that wil send a mail to a specific recipient.
That can be a different one for every email.

When I use the real email address all goes well but when i use a string with the emailaddress it doesn't get sent.

example
$Typo3_htmlmail->setRecipient('some...@server.com'); ---> this works


$mailto = "some...@server.com";
$Typo3_htmlmail->setRecipient($mailto); -----> won't work

$Typo3_htmlmail->setRecipient("".$mailto.""); -----> won't work

Can someone tell me how to code this so that I can use $mailto

kind regards from Leen
_______________________________________________
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english

Reply via email to