input in email fields is not trimmed so leading or trailing spaces can cause errors especially when a user try to unsubscribe from the list. Fix would be easy:
/**
Sets the email
@param string $email
@return void
*/
public function setEmail($email)
{
$this->email = trim($email);
}
input in email fields is not trimmed so leading or trailing spaces can cause errors especially when a user try to unsubscribe from the list. Fix would be easy:
/**