I’m using a contact form that requires a recipient in between single quotes, but I need to pass it from a variable. I’m new to OOP and I’m sure that’s why this isn’t working.
[php]$formproc->AddRecipient(‘[email protected]’);[/php] ^-- what’s expected
[php]$formproc->AddRecipient($recipient);[/php] ^-- what I’m trying to accomplish
anyone please?