Right now, I am sending emails with the following (some excerpted):
$this->objMessage->ReadTemplate(__TEMPLATES_MAIL__ . '/invite.html');
$this->objMessage->HtmlBody = $this->objMessage->ApplyVariablesToTemplate($variablesArray);
$this->objMessage->From = $this->objUser->FullName .'<noreply@domain.com>';
$this->objMessage->To = $this->txtEmail->Text;
QEmailServer::Send($this->objMessage);
.bc