从控制台发送的电子邮件中链接无法正确呈现

时间:2018-05-24 06:32:18

标签: cakephp command-line-interface cakephp-3.x

我有以下代码发送我的电子邮件:

/**
 * @param array $to
 * @param string $subject
 * @param array $vars
 * @param string $template
 * @param array $from
 */
public function sendEmail(array $to, $subject, array $vars, $template = 'default', array $from = ['dev@example.com' => 'Online'])
{
    $transport = 'default';
    if (Configure::read('debug')) {
        $transport = 'dev';
    }
    $mailer = new Email($transport);
    if ($this->isCommandLineInterface()) {
        $mailer->setDomain('http://local.peepznew.com');
    }
    $this->addRecipients($mailer, $to);
    $mailer->setFrom($from);
    $mailer->setSubject($subject);
    $mailer->setTemplate($template);
    if (isset($vars['preheaderText']) === false) {
        $vars['preheaderText'] = '';
    }
    $vars['subject'] = $subject;
    $mailer->setViewVars($vars);
    $mailer->setEmailFormat('both');
    $mailer->send();
}

此代码从Web界面和命令行调用。在努力获取从命令行发送的消息中显示的完整URL后,我阅读了文档并遇到了this

enter image description here

这就是我正在进行setDomain调用的原因。我再次运行我的代码,它仍然没有完整的Urls。所以我在web界面和cli中创建了完全相同的功能,如下所示:

$this->sendEmail(
    ['my.email@example.com'],
    'Test Email',
    [
        'title' => 'We need to select another peep',
        'showFooterLinks' => true,
    ]
);
die;

默认模板看起来像这样(它实际上只有这一行):

echo $this->Html->link('test link', ['controller' => 'jobs', 'action' => 'select_staff', 1, '_full' => true]);

来自网络界面的电子邮件,使用上面的代码,发送完美。完整的URL和一切。但是,从cli开始,它只发送/jobs/select_staff/1

为什么会这样,我该如何解决?

1 个答案:

答案 0 :(得分:3)

仔细阅读文档,他们说在生成邮件ID时正在使用通过setDomain()设置的域名,即它在电子邮件标题中使用。

生成链接是完全不同的,并且受App.fullBaseUrl配置选项的影响,默认情况下,env('HTTP_HOST')配置选项来自应用程序config/bootstrap.php中的config/app.php,除非已在{{1}中配置}}

也可以在config/bootstrap_cli.php文件中为CLI环境单独配置基本URL,应该已经有一个注释片段,如下所示:

// Set the fullBaseUrl to allow URLs to be generated in shell tasks.
// This is useful when sending email from shells.
//Configure::write('App.fullBaseUrl', php_uname('n'));

另见