Cela fait maintenant quatre mois que je suis sur un projet et je suis vraiment énervé de ce que Laravel me fait maintenant. Ce n'est pas envoyer des courriels; Je l'ai configuré pour utiliser le pilote de messagerie et mettre le bon code, mais cela ne semble pas fonctionner du tout. En plus de ne pas fonctionner, cela ne me donne même pas une erreur!
Voici ma configuration:
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"
|
*/
'driver' => 'mail',
/*
|--------------------------------------------------------------------------
| 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 Postmark mail service, which will provide reliable delivery.
|
*/
'Host' => 'smtp.mailgun.org',
/*
|--------------------------------------------------------------------------
| SMTP Host Port
|--------------------------------------------------------------------------
|
| This is the SMTP port used by your application to delivery e-mails to
| users of your application. Like the Host we have set this value to
| stay compatible with the Postmark 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' => null, 'name' => null),
/*
|--------------------------------------------------------------------------
| 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' => null,
/*
|--------------------------------------------------------------------------
| 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' => null,
/*
|--------------------------------------------------------------------------
| 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,
);
Voici mon code PHP d'envoi de courrier électronique:
$data["mail_message"] = "Hello!";
Mail::send('emails.welcome', $data, function($message)
{
$message
->to('[email protected]')
->from('[email protected]')
->subject('TEST');
});
Tout d’abord, allez dans app/config/mail.php et changez le pilote pour «mail». Mettez également l'hôte en blanc.
Dans mon scénario, les courriels étaient en file d'attente, c'est pourquoi je n'ai reçu aucun résultat. J'avais oublié que je mettais l'email dans queue par défaut . J'ai regardé dans la table des emplois, j'ai vu tous mes messages qui m'attendaient. J'ai exécuté php artisan queue:work
pour que la file d'attente soit lancée/envoyée.
C'est peut-être parce que vous avez un fichier ".env", à la racine du projet Laravel, avec la configuration du serveur de messagerie comme ceci:
...
MAIL_DRIVER=mail
MAIL_Host=mailtrap.io
MAIL_PORT=2525
MAIL_USERNAME=null
MAIL_PASSWORD=null
MAIL_ENCRYPTION=null
Il semble que le fichier ".env" remplace simplement le fichier "config/mail.php". Vous pouvez simplement supprimer les mêmes lignes du fichier ".env" pour utiliser les options de configuration "config/mail.php".
Aller au fichier .env et définir
MAIL_DRIVER=smtp
Ou vous pouvez définir le pilote à partir des fichiers de configuration. Allez dans le fichier Laravel 4: app/config/mail.php Laravel 5: config/mail.php Et définissez
'driver' => 'smtp',
Vous pouvez utiliser SMTP. J'espère que ça va aider.
Une solution pour les notifications non envoyées par 'mail'
https://laravel.com/docs/5.7/notifications#customizing-the-recipient
<?php
namespace App;
use Illuminate\Notifications\Notifiable;
use Illuminate\Foundation\Auth\User as Authenticatable;
class User extends Authenticatable
{
use Notifiable;
/**
* Route notifications for the mail channel.
*
* @param \Illuminate\Notifications\Notification $notification
* @return string
*/
public function routeNotificationForMail($notification)
{
return $this->email_address;
}
}
vous devez d'abord modifier votre fichier de configuration MAIL_DRIVER = smtp MAIL_Host = smtp.gmail.com MAIL_PORT = 587 [email protected] MAIL_PASSWORD = xxxxxxxxxx MAIL_ENCRYPTION = tls
la commande d'exécution: php artisan make: mail name
fonction publique build (Request $ request) {return $ this-> view ('mail [' variable '=> $ request-> message]) -> à ($ request-> à);}
fichier web
Route :: post ('send', 'mailController @ send'); Route :: get ('email', 'mailController @ email');
vous fichier de contrôleur
fonction publique send () {Mail :: send (nouveau nom ());} fonction publique email () {return view ('email');}
voir: email
voir: mail
ou si vous voulez concevoir un site plus de détails
https://codingexpertise.blogspot.com/2018/12/how-to-send-mail-in-laravel.htmlhttps://codingexpertise.blogspot.com/2018/11/ laravel-new.html
La solution qui a fonctionné pour moi
.env
, changez APP_URL=127.0.01
en APP_URL=http://localhost
config:cache
, puis redémarrez le serveur.Après que mon courrier a commencé à envoyer!
Comment je suis arrivé à ce correctif
J'avais précédemment configuré correctement mes détails SMTP, mais même après avoir effectué config: cache config: clear et redémarrage de mon serveur, les e-mails n'étaient pas envoyés. Après cela, je l'ai comparée à mon application Laravel, et la seule différence était le 127.0.0.1 -> http: // localhost , et j'ai donc changé cela à la dernière tentative et cela a fonctionné.
J'ai finalement réussi à le faire fonctionner. Si vous utilisez mailgun, ajoutez ces informations ci-dessous à votre fichier .env
MAILGUN_DOMAIN=your.mailgundomain.com
MAILGUN_SECRET=key-yourmailgunkey
puis courir
php artisan config:clear
Changez le pilote dans votre fichier de configuration en "smtp" à partir de "mail". Je suppose que cela devrait fonctionner.