On Windows, the mail() function doesn't accept addresses like "name <email@host.com>" . We've hacked a fix, but wanted to report it so that it can be fixed in the next release.
in library\Framework\Framework.Class.Email.php: We changed line 120 as follows, to output an address formatted like "email@host.com" //$Header .= "From: ".$this->FromName." <".$this->FromEmail.">\r\n"; $Header .= "From: ".$this->FromEmail."\r\n";