Chris said that both of these will work:
// set the sender
$message->setFrom(array($fm_email => $fm_name));
OR
// set the sender
$message->setFrom(array("$fm_email" => "$fm_name"));
But does it matter which is used ?
Just want to avoid problems later on