Why mail laravel not working on the staging server?

泪湿孤枕 提交于 2020-01-16 18:04:07

问题


I try on the my localhost, it works

But if I try on the staging server, it does not works

My controller like this :

<?php
use Illuminate\Support\Facades\Mail;
use App\Mail\OrderReceivedMail;
...
class PurchaseController
{
    ...
    public function test() {
        $order = $this->order_repository->find(416);
        $user = $this->user_repository->find(1);
        Mail::to($user)->send(new OrderReceivedMail($order, $order->store));
    }
}

My mail like this :

<?php
namespace App\Mail;
use Illuminate\Bus\Queueable;
use Illuminate\Mail\Mailable;
use Illuminate\Queue\SerializesModels;
use Illuminate\Contracts\Queue\ShouldQueue;
class OrderReceivedMail extends Mailable implements ShouldQueue
{
    use Queueable, SerializesModels;
    public $order;
    public $store;
    public function __construct($order, $store)
    {
        $this->order = $order;
        $this->store = $store;
        $this->subject('subject');
    }
    public function build()
    {
        $mail_company = explode(',',config('app.mail_company'));
        // dd($mail_company, $this->order->number, $this->store->name, 'test');
        return $this->view('vendor.notifications.mail.email-order',['number'=>$this->order->number, 'store_name' => $this->store->name])->bcc($mail_company);
    }
}

I try add this :

dd($mail_company, $this->order->number, $this->store->name, 'test');

on the mail

If in my localhost, the result of dd show

But if in the staging server, the result of dd not show

Seems if the staging server, it does not run this statement :

Mail::to($user)->send(new OrderReceivedMail($order, $order->store));

How can I solve this problem?


回答1:


open config/mail.php, .env files and set your email driver as mail as bellow,

'driver' => env('MAIL_DRIVER', 'mail'), //you must set it in env file too

then you can send emails like bellow, note that emails.admin.member, is the path to your email template, in the example code, laravel will look for a blade template in the path, resources\views\emails\admin\member.blade.php

Mail::queue('emails.admin.member', $data, function($message) {
        $message->subject("A new Member has been Registered" );
        $message->from('noreply@mydomain.net', 'Your application title');
        $message->to('yourcustomer@yourdomain.com');
    });

or

Mail::send('emails.admin.member', $data, function($message) {
        $message->subject("A new Member has been Registered" );
        $message->from('noreply@mydomain.net', 'Your application title');
        $message->to('yourcustomer@yourdomain.com');
    });


来源:https://stackoverflow.com/questions/47525731/why-mail-laravel-not-working-on-the-staging-server

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!