add class Westdc\Mail\Queue
This commit is contained in:
parent
414b8f1f73
commit
40b58bda04
|
@ -0,0 +1,41 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* Created by PhpStorm.
|
||||||
|
* User: liujin834
|
||||||
|
* Date: 15/1/3
|
||||||
|
* Time: 下午9:57
|
||||||
|
*/
|
||||||
|
|
||||||
|
namespace Westdc\Mail;
|
||||||
|
|
||||||
|
use Zend\ServiceManager\ServiceManager;
|
||||||
|
use Zend\ServiceManager\ServiceManagerAwareInterface;
|
||||||
|
use Westdc\EventModel\AbstractEventManager;
|
||||||
|
|
||||||
|
class Queue extends AbstractEventManager implements ServiceManagerAwareInterface{
|
||||||
|
|
||||||
|
protected $serviceManager;
|
||||||
|
|
||||||
|
public function setServiceManager(ServiceManager $serviceManager)
|
||||||
|
{
|
||||||
|
$this->serviceManager = $serviceManager;
|
||||||
|
|
||||||
|
$this->init();
|
||||||
|
|
||||||
|
return $this;
|
||||||
|
}
|
||||||
|
|
||||||
|
private function init()
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
public function add(){
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
public function show(){
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
|
@ -24,6 +24,11 @@ class Sender implements ServiceManagerAwareInterface{
|
||||||
return $this;
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 发送即时邮件
|
||||||
|
* @param $options
|
||||||
|
* @return bool
|
||||||
|
*/
|
||||||
public function backend($options)
|
public function backend($options)
|
||||||
{
|
{
|
||||||
$cmd = "php ".CURRENT_BOOTSTRAP_SCRIPT;
|
$cmd = "php ".CURRENT_BOOTSTRAP_SCRIPT;
|
||||||
|
@ -50,4 +55,36 @@ class Sender implements ServiceManagerAwareInterface{
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 将邮件添加到发送列队,降低内存和cpu消耗,但是用户无法即时收到,适用于通知类型的邮件和大批量发送的邮件
|
||||||
|
* @param $options
|
||||||
|
* @return bool
|
||||||
|
*/
|
||||||
|
public function queue($options)
|
||||||
|
{
|
||||||
|
$cmd = "php ".CURRENT_BOOTSTRAP_SCRIPT;
|
||||||
|
$cmd .= ' mail queue';
|
||||||
|
$cmd .= ' --email="'.$options['email'].'"';
|
||||||
|
$cmd .= ' --name="'.$options['name'].'"';
|
||||||
|
$cmd .= ' --template="'.$options['template'].'"';
|
||||||
|
|
||||||
|
if(isset($options['data']))
|
||||||
|
{
|
||||||
|
$data = json_encode($options['data']);
|
||||||
|
$cmd .= ' --data=\''.$data.'\'';
|
||||||
|
}
|
||||||
|
|
||||||
|
$tools = $this->serviceManager->get('Tools');
|
||||||
|
|
||||||
|
if($this->debug == 0)
|
||||||
|
{
|
||||||
|
$tools->execBackend($cmd);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
var_dump($tools->execFront($cmd));
|
||||||
|
return true;
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
Loading…
Reference in New Issue