使用另一个“发件人”标头从Laravel发送电子邮件

4

大家好,有人知道如何设置电子邮件的发件人地址吗?在电子邮件配置中可以设置,但我想使用像noreply@whatever.com这样的地址。例如,下面的代码不起作用:

Mail::send('emails.auth.activate', array('link' => URL::route('account-activate', $code), 'username' => $username), function($message) use ($user) {
    $message->from('noreply@whatever.com', 'Activate Account');
    $message->to($user->email, $user->username)->subject('Activate your account');
});

我希望能够使用 noreplay@whatever.com 而不是在 mail.php 的配置设置中使用。
当我使用 $message->from('noreply@whatever.com', 'Activate Account'); 时,它仍然显示我的 Gmail 帐户而不是 noreply@whatever.com
<?php

return array(

    /*
    |--------------------------------------------------------------------------
    | Mail Driver
    |--------------------------------------------------------------------------
    |
    | Laravel supports both SMTP and PHP's "mail" function as drivers for the
    | sending of e-mail. You may specify which one you're using throughout
    | your application here. By default, Laravel is setup for SMTP mail.
    |
    | Supported: "smtp", "mail", "sendmail", "mailgun", "mandrill", "log"
    |
    */

    'driver' => 'smtp',

    /*
    |--------------------------------------------------------------------------
    | SMTP Host Address
    |--------------------------------------------------------------------------
    |
    | Here you may provide the host address of the SMTP server used by your
    | applications. A default option is provided that is compatible with
    | the Mailgun mail service which will provide reliable deliveries.
    |
    */

    'host' => 'smtp.gmail.com',

    /*
    |--------------------------------------------------------------------------
    | SMTP Host Port
    |--------------------------------------------------------------------------
    |
    | This is the SMTP port used by your application to deliver e-mails to
    | users of the application. Like the host we have set this value to
    | stay compatible with the Mailgun e-mail application by default.
    |
    */

    'port' => 587,

    /*
    |--------------------------------------------------------------------------
    | Global "From" Address
    |--------------------------------------------------------------------------
    |
    | You may wish for all e-mails sent by your application to be sent from
    | the same address. Here, you may specify a name and address that is
    | used globally for all e-mails that are sent by your application.
    |
    */

    'from' => array('address' => 'admin@blahblah.com', 'name' => 'SuperStore'),

    /*
    |--------------------------------------------------------------------------
    | E-Mail Encryption Protocol
    |--------------------------------------------------------------------------
    |
    | Here you may specify the encryption protocol that should be used when
    | the application send e-mail messages. A sensible default using the
    | transport layer security protocol should provide great security.
    |
    */

    'encryption' => 'tls',

    /*
    |--------------------------------------------------------------------------
    | SMTP Server Username
    |--------------------------------------------------------------------------
    |
    | If your SMTP server requires a username for authentication, you should
    | set it here. This will get used to authenticate with your server on
    | connection. You may also set the "password" value below this one.
    |
    */

    'username' => 'blahblah@gmail.com',

    /*
    |--------------------------------------------------------------------------
    | SMTP Server Password
    |--------------------------------------------------------------------------
    |
    | Here you may set the password required by your SMTP server to send out
    | messages from your application. This will be given to the server on
    | connection so that the application will be able to send messages.
    |
    */

    'password' => '**********',

    /*
    |--------------------------------------------------------------------------
    | Sendmail System Path
    |--------------------------------------------------------------------------
    |
    | When using the "sendmail" driver to send e-mails, we will need to know
    | the path to where Sendmail lives on this server. A default path has
    | been provided here, which will work well on most of your systems.
    |
    */

    'sendmail' => '/usr/sbin/sendmail -bs',

    /*
    |--------------------------------------------------------------------------
    | Mail "Pretend"
    |--------------------------------------------------------------------------
    |
    | When this option is enabled, e-mail will not actually be sent over the
    | web and will instead be written to your application's logs files so
    | you may inspect the message. This is great for local development.
    |
    */

    'pretend' => false,

);

你使用Swift Mailer吗?还是只用SMTP? - Sulthan Allaudeen
我认为我正在使用smtp。我已经在config中的mail.php文件中更改了设置。我使用了默认的邮件选项。 - ONYX
noreplay@whatever.comnoreply@whatever.com是一种类型吗?您当前接收到的邮件头(发件人)是什么? - Sulthan Allaudeen
它只是使用我在mail.php文件中设置的我的电子邮件帐户gmail上的myemail@gmail.com作为发件人部分。 - ONYX
如果您在 mail.php 中填写了您的 Gmail 地址,则它将成为您的“发件人”。 - Sulthan Allaudeen
显示剩余4条评论
1个回答

2

您不能使用跨域触发电子邮件

例如,如果您已经在 Gmail 上配置了 SMTP,那么您就不能使用其他某些域发送邮件。

这涉及到电子邮件欺骗,是不被允许的。

您只能为您在 mail.php 中配置的域名发送电子邮件。

Laravel 邮件文档

这里还有完整的聊天记录,对未来的读者可能会有帮助


网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接