gpt4 book ai didi

magento - 如何在 Magento 中使用电子邮件模板

转载 作者:行者123 更新时间:2023-12-02 07:45:14 24 4
gpt4 key购买 nike

我在 magento 社区版 1.5.0.1 中开发我的商店。我需要一个电子邮件模板,其内容可由管理员编辑。我通过管理员“交易电子邮件”创建电子邮件模板。现在我需要从我的自定义模块访问和使用该电子邮件。我怎么得到它?,你有任何想法让我知道。

最佳答案

应该这样做。

public function sendTransactionalEmail() {

// Transactional Email Template's ID
$templateId = 1;

// Set sender information
$senderName = Mage::getStoreConfig('trans_email/ident_support/name');
$senderEmail = Mage::getStoreConfig('trans_email/ident_support/email');
$sender = array('name' => $senderName,
'email' => $senderEmail);

// Set recepient information
$recepientEmail = 'john@example.com';
$recepientName = 'John Doe';

// Get Store ID
$storeId = Mage::app()->getStore()->getId();

// Set variables that can be used in email template
$vars = array('customerName' => 'customer@example.com',
'customerEmail' => 'Mr. Nil Cust');

$translate = Mage::getSingleton('core/translate');

// Send Transactional Email
Mage::getModel('core/email_template')
->sendTransactional($templateId, $sender, $recepientEmail, $recepientName, $vars, $storeId);

$translate->setTranslateInline(true);
}

关于magento - 如何在 Magento 中使用电子邮件模板,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7500038/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com