本文整理汇总了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);
}