Magento 1 || Enviar arquivo por ftp - mpaz-redstage/magento-snippets GitHub Wiki
$ftp = new Varien_Io_Sftp();
$ftp->open(array(
'host' => $this->ftp_host,
'username' => $this->ftp_username,
'password' => $this->ftp_password,
//'port' => $this->ftp_port
));
$flocal = fopen($filenameInfo['complete_path'], 'r');
$ftp->write($this->ftp_destination_path . $filenameInfo['filename'], $flocal);
$ftp->close();