Я предполагаю, что ваш каталог var публичный, добавьте путь автозагрузки
require getcwd() . '/../vendor/autoload.php'; // configure autoload path as per your file location.
ini_set('display_errors', 1);
error_reporting(E_ALL);
require_once('app/Mage.php'); //Path to Magento, may be this not required.
umask(0);
Mage::app();
$mail = new Zend_Mail();
$mail->addTo('mymail@mail.com','apple');
$mail->setFrom('sender@mail.com','sender');
$mail->setSubject('notifications');
$mail->setBodyHTML('<p>hi</p>','UTF-8'); // your content or message
try {
$mail->send();
echo "mail sent";
}
catch (Exception $e) {
print_r($e);
}