mageekguy\atoum\mailer::addTo PHP Method

addTo() public method

public addTo ( $to, $realName = null )
    public function addTo($to, $realName = null)
    {
        if ($this->to !== null) {
            $this->to .= ',';
        }
        if ($realName === null) {
            $this->to .= $to;
        } else {
            $this->to .= $realName . ' <' . $to . '>';
        }
        return $this;
    }