Integration with ZF2

来源:互联网 发布:百度浏览器有mac版的吗 编辑:程序博客网 时间:2024/06/16 20:38
1. edit index.php
Yii::import('application.vendors.zf2.Loader.StandardAutoloader',true);
Yii::registerAutoloader(array(newZend\Loader\StandardAutoloader(array('autoregister_zf' =>true)), 'autoload'), true);

2. edit control.php
$mail = new Zend\Mail\Message();
       $mail->setBody('This is the text of themail.')
             ->setFrom('prince.bi@gmail.com', 'Some Sender')
             ->addTo('jianbinbi@gmail.com', 'Some Recipient')
             ->setSubject('TestSubject');

       $transport = newZend\Mail\Transport\Sendmail();
       $transport->send($mail);
       echo "OK";
0 0
原创粉丝点击