如何以编程方式发送电子邮件 Prestashop?

How to Send email programatically Prestashop?

您好,我正在尝试在模块中的 prestashop 中发送电子邮件 但它不起作用。

他们有办法做到这一点吗?

你应该检查 Mail class 和 Send 方法。

示例:

Mail::Send(
    (int) $this->context->language->id,
    $this->getTemplate(),
    $this->getSubject(),
    $this->getTemplateVars(),
    $this->getTo(),
    $this->getToName(),
    $this->getFrom(),
    $this->getFromName(),
    $this->getFileAttachment(),
    $this->isModeSmtp(),
    $this->getTemplatePath(),
    $this->isDie(),
    (int) $this->context->shop->id,
    $this->getBcc(),
    $this->getReplyTo()
);

你在整个系统中有更多的例子。只需在代码中搜索“Mail::Send”即可。