本文整理汇总了PHP中Customers::getEmails方法的典型用法代码示例。如果您正苦于以下问题:PHP Customers::getEmails方法的具体用法?PHP Customers::getEmails怎么用?PHP Customers::getEmails使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Customers
的用法示例。
在下文中一共展示了Customers::getEmails方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: indexAction
public function indexAction()
{
$auth = Zend_Auth::getInstance();
$registry = Shineisp_Registry::getInstance();
$translation = Shineisp_Registry::get('Zend_Translate');
$retval = array();
if ($auth->hasIdentity()) {
$request = Zend_Controller_Front::getInstance()->getRequest();
try {
$form = new Admin_Form_BulkmailForm(array('action' => '/admin/bulkmail/#bulkmail', 'method' => 'post'));
if ($request->isPost()) {
$isp = Isp::getActiveISP();
if ($form->isValid($request->getPost())) {
$data = $request->getPost();
$mail = new Bulkmails();
$mail->subject = $data['subject'];
$mail->body = $data['body'];
$mail->senddate = date('Y-m-d H:i:s');
$mail->save();
$customers = Customers::getEmails();
foreach ($customers as $customer) {
$body = str_replace('{fullname}', $customer['fullname'], $data['body']);
$result = Shineisp_Commons_Utilities::SendEmail($isp['email'], $customer['email'], null, $data['subject'], $body, true);
if ($result !== true) {
$retval[] = $result;
}
}
}
}
$retval = count($retval) > 0 ? $retval : null;
$this->view->form = $form;
$this->view->title = $translation->translate("Mass eMail");
$this->view->description = $translation->translate("Write here a message to send to all your own customers.");
$this->view->errors = $retval;
} catch (Exception $e) {
die($e->getMessage());
}
}
}