I want to comma separate last name and first name in the result. How can I do this? I tried:
$headers .= 'From:'.$gender.''.$last_name.','.$first_name.'<'.$email.'>' . "\r\n".
but this does not work.
When I use:
$headers .= 'From:'.$gender.''.$last_name.''.$first_name.'<'.$email.'>' . "\r\n".
it does work, but no comma is added.
Can anyone help please?