使用laravel发送电子邮件

使用laravel发送电子邮件

本文介绍了使用laravel发送电子邮件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个联系表,当访问者从联系表发送消息时,我想向该页面的管理员发送电子邮件.

I have a contact form and I want to send email to the admin of the page when a visitor sends a message from the contact form.

  public function send(Request $request){
        Mail::send('email.message',[
            'request' => $request
        ], function($m) use ($request) {
            $m->from($request->email);
            $m->to('[email protected]', 'Name')->subject('Your Reminder!');
        });
   }

如何将其配置为不使用gmail发送电子邮件?

How can I configure it to send email without using gmail?

推荐答案

您应该阅读有关使用Laravel及其驱动程序发送邮件的文档.邮枪

you should read the docs about sending Mail using Laravel and its drivers e.g. Mailgun

http://laravel.com/docs/master/mail

这篇关于使用laravel发送电子邮件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-07 04:58