本文整理匯總了PHP中Aimeos\MShop\Context\Item\Iface::getMail方法的典型用法代碼示例。如果您正苦於以下問題:PHP Iface::getMail方法的具體用法?PHP Iface::getMail怎麽用?PHP Iface::getMail使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Aimeos\MShop\Context\Item\Iface
的用法示例。
在下文中一共展示了Iface::getMail方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: sendMail
/**
* Sends the notification e-mail for the given customer address and products
*
* @param \Aimeos\MShop\Context\Item\Iface $context Context item object
* @param \Aimeos\MShop\Common\Item\Address\Iface $address Payment address of the customer
* @param array $products List of products a notification should be sent for
*/
protected function sendMail(\Aimeos\MShop\Context\Item\Iface $context, \Aimeos\MShop\Common\Item\Address\Iface $address, array $products)
{
$view = $context->getView();
$view->extProducts = $products;
$view->extAddressItem = $address;
$helper = new \Aimeos\MW\View\Helper\Translate\Standard($view, $context->getI18n($address->getLanguageId()));
$view->addHelper('translate', $helper);
$mailer = $context->getMail();
$message = $mailer->createMessage();
$helper = new \Aimeos\MW\View\Helper\Mail\Standard($view, $message);
$view->addHelper('mail', $helper);
$client = $this->getClient($context);
$client->setView($view);
$client->getHeader();
$client->getBody();
$mailer->send($message);
}
示例2: sendEmail
/**
* Sends the account creation e-mail to the e-mail address of the customer
*
* @param \Aimeos\MShop\Context\Item\Iface $context Context item object
* @param \Aimeos\MShop\Customer\Item\Iface $item Customer item object
* @param string $password Customer clear text password
*/
protected function sendEmail(\Aimeos\MShop\Context\Item\Iface $context, \Aimeos\MShop\Customer\Item\Iface $item, $password)
{
$address = $item->getPaymentAddress();
$view = $context->getView();
$view->extAddressItem = $address;
$view->extAccountCode = $item->getCode();
$view->extAccountPassword = $password;
$helper = new \Aimeos\MW\View\Helper\Translate\Standard($view, $context->getI18n($address->getLanguageId()));
$view->addHelper('translate', $helper);
$mailer = $context->getMail();
$message = $mailer->createMessage();
$helper = new \Aimeos\MW\View\Helper\Mail\Standard($view, $message);
$view->addHelper('mail', $helper);
$client = $this->getClient($context);
$client->setView($view);
$client->getHeader();
$client->getBody();
$mailer->send($message);
}