在laravel .env文件中配置发件人邮件地址

时间:2018-11-21 10:29:48

标签: laravel-5

我使用laravel 5.6应用程序来开发项目。在那个项目中,我必须向用户发送邮件。所以我想在envmail.php文件中配置发件人邮件地址。

如果是用于gmail,那么我将在环境文件中使用以下代码:

MAIL_DRIVER=smtp
MAIL_HOST=smtp.gmail.io
MAIL_PORT=587
MAIL_USERNAME=vino@gmail.com
MAIL_PASSWORD=feaeda91d
MAIL_ENCRYPTION=TLS

然后在我的mail.php中:

'driver' => env('MAIL_DRIVER', 'smtp'),
'host' => env('MAIL_HOST', 'smtp.mailgun.org'),
'port' => env('MAIL_PORT', 587),

但是我不使用gmails,我想使用我的办公室电子邮件地址(vino123@xxx.in),域名是 mail.xxx.in ,所以我不知道如何在我的envmail.php文件中配置主机驱动程序端口

1 个答案:

答案 0 :(得分:1)

为此,您必须向负责管理该服务器的人员询问办公室域中负责发送电子邮件的邮件服务器的所有相关信息。

MAIL_DRIVER=smtp
// The server IP address or domaine name of the mail server
MAIL_HOST=your_ofice_domaine_name.in
// Port on which the server is receiving email
MAIL_PORT=587 
// The username with which to make authentification on the mail server
MAIL_USERNAME=johndoe
// The password of the user
MAIL_PASSWORD=feaeda91d
// If the server is using encryption you can set it here
MAIL_ENCRYPTION=TLS