trying to configure mail in laravel, get an exception. why?

爷,独闯天下 提交于 2019-12-23 23:28:43

问题


I have configured config/mail.php, controllers,etc. still not working and throwing this error:

[2015-12-05 14:47:57] local.ERROR: exception 'Symfony\Component\Debug\Exception\FatalErrorException' with message 'Class 'Swift_Mailer' not found' in /vdir/www.adfusion.ch/var/www/vhosts/www.adfusion.ch/web/laravel/vendor/laravel/framework/src/Illuminate/Mail/MailServiceProvider.php:95
Stack trace:
#0 {main}  

My contact controller:

<?php

namespace App\Http\Controllers;

use Illuminate\Http\Request;

use App\Http\Requests;
use App\Http\Controllers\Controller;
use Illuminate\Support\Facades\Mail;

class ContactController extends Controller
{
    public function index()
    {
        return view('contact');
    }

    public function postSubmit(Request $request)
    {
        Mail::send('emails.contact', ['data' => $request->all()], function ($m) {
            $m->from(config('mail.from.address'), config('mail.from.name'));
            $m->to('info@xxxxx', 'xxxx')->subject('Contact Form Submitted');
        });
    }
}

Routes:

Route::get('/contact', 'ContactController@index');
Route::post('/contact/submit', 'ContactController@postSubmit');

I have a emails/contact view. is there anything that I missed?!

EDIT:

Mail configuration file:

return [

/*
|--------------------------------------------------------------------------
| 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", "ses", "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.XXXX',

/*
|--------------------------------------------------------------------------
| 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' => 25,

/*
|--------------------------------------------------------------------------
| 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' => ['address' => 'no-reply@XXX', 'name' => 'XX'],

/*
|--------------------------------------------------------------------------
| 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' => null,

/*
|--------------------------------------------------------------------------
| 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' => 'no-reply@XXXX',

/*
|--------------------------------------------------------------------------
| 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' => 'XXXXX',

/*
|--------------------------------------------------------------------------
| 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,

];

Marked username and domain name with XXX

Why does it uses swift? I'm trying to use the hosting mail server tried a dd in the controller, it does nothing! why does not gets to the contact controller?

contact view:

<form role="form" id="feedbackForm" data-toggle="validator" data-disable="false" method="POST" action="{{ url('contact/submit') }}">

also, on local server, if I set pretend to true, I get in log the following:

[2015-12-05 16:49:50] local.INFO: Pretending to mail message to: info@xxxx

This is the server log:

[Sat Dec 05 17:56:29 2015] [warn] [client 188.24.47.222] mod_fcgid: stderr: PHP Fatal error: Class 'Swift_Transport_EsmtpTransport' not found in /vdir/www.xxx.ch/var/www/vhosts/www.xxx.ch/web/laravel/vendor/swiftmailer/swiftmailer/lib/classes/Swift/SmtpTransport.php on line 24, referer: http://xxx.ch/contact


回答1:


Have you changed your mail driver, host etc in your environment variables (.env) file? Here:

MAIL_DRIVER=smtp
MAIL_HOST=mailtrap.io
MAIL_PORT=2525
MAIL_USERNAME=null
MAIL_PASSWORD=null

These must be set to the same as your username and password etc. in your mail config file




回答2:


Yes, of course. Here's the solution that I used in order to configure email for laravel.

indexmail.php, root folder

 <?php
 if(isset($_POST['submit']))
 {
    $name = $_POST['name'];
    $email = $_POST['email'];
    $query = $_POST['message'];
    $email_from = $name.'<'.$email.'>';

 $to="your-email@your-domain.com";
 $subject="Enquiry!";
 $headers  = 'MIME-Version: 1.0' . "\r\n";
 $headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
 $headers .= "From: ".$email_from."\r\n";
 $message="   

         Name:
         $name     
         <br>
         Email-Id:
         $email        
         <br>
         Message:
         $query        

   ";
    if(mail($to,$subject,$message,$headers))
        header("Location:../contact.php?msg=Successful Submission! Thankyou for contacting us.");
    else
        header("Location:../contact.php?msg=Error To send Email !");
        //contact:-your-email@your-domain.com
 }
?>

routes.php

Route::post('/contact/submit', 'ContactController@postSubmit');

config/mail.php

'from' => ['address' => 'Sender@email.com', 'name' => 'MyName'],




'pretend' => false,

email view.

<strong>You have a new feedback from contact page!</strong>
<p><strong>Name: </strong> {{$data['name']}}</p>
<p><strong>Email: </strong> {{$data['email']}}</p>
<p><strong>Message: </strong> {{$data['message']}}</p>

contact form.

 <form role="form" id="feedbackForm" data-toggle="validator" data-disable="false" method="POST"
                                 action="{{ url('contact/submit') }}">
                               <input type="hidden" name="_token" value="{{ csrf_token() }}"/>

app/Http/Requests/ContactFormRequest.php

<?php

namespace App\Http\Requests;

use App\Http\Requests\Request;

class ContactFormRequest extends Request
{
    /**
     * Determine if the user is authorized to make this request.
     *
     * @return bool
     */
    public function authorize()
    {
        return true;
    }

    /**
     * Get the validation rules that apply to the request.
     *
     * @return array
     */
    public function rules()
    {
        return [
            'name' => 'required',
            'email' => 'required|email',
            'message' => 'required',
        ];
    }
}

app/User.php

<?php

namespace App;

use Illuminate\Foundation\Auth\User as Authenticatable;

class User extends Authenticatable
{
    /**
     * The attributes that are mass assignable.
     *
     * @var array
     */
    protected $fillable = [
        'name', 'email', 'password',
    ];

    /**
     * The attributes that should be hidden for arrays.
     *
     * @var array
     */
    protected $hidden = [
        'password', 'remember_token',
    ];
}

Let me know if it works!



来源:https://stackoverflow.com/questions/34106977/trying-to-configure-mail-in-laravel-get-an-exception-why

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