Bonjour,

Voila je rencontre un petit problème avec mon code.

Ce que je fais

Décrivez ici votre code ou ce que vous cherchez à faire

{
    use Queueable;

    /**
     * Create a new notification instance.
     *
     * @return void
     */
    public function __construct()
    {
        //
    }

    /**
     * Get the notification's delivery channels.
     *
     * @param  mixed  $notifiable
     * @return array
     */
    public function via($notifiable)
    {
        return ['mail'];
    }

    /**
     * Get the mail representation of the notification.
     *
     * @param  mixed  $notifiable
     * @return \Illuminate\Notifications\Messages\MailMessage
     */
    public function toMail($notifiable)
    {
        return (new MailMessage)
                    ->success()
                    ->subject('Inscription sur le site')
                    ->line('Votre compte a bien été créé. Vueillez le confirmer en cliquant sur le lien ci-dessous.')
                    ->action('Confirmer votre compte', url("confirm/{$notifiable->id}/".urlencode($notifiable->confirmation_token)))
                    ->line("Une fois votre compte activé, vous allez recevoir un mail confirmant la validation de votre compte!")
                    ->line("Cordialement,")
                    ->line("L'équipe de support Sourcing-hub")
                    ->line("Vous n'êtes pas l'origine de cette demande ? Ignorez l'email.");
    }

    /**
     * Get the array representation of the notification.
     *
     * @param  mixed  $notifiable
     * @return array
     */
    public function toArray($notifiable)
    {
        return [
            //
         ];
    }
}

Entourez votre code pour bien le mettre en forme

Ce que je veux

Envoyer un mail une fois l'inscription validée

Ce que j'obtiens

local.ERROR: Expected response code 220 but got code "", with message "" {"exception":"[object] (Swift_TransportException(code: 0): Expected response code 220 but got code \"\", with message \"\" at /var/www/html/sourcinghub/lsapp/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Transport/AbstractSmtpTransport.php:456)
[stacktrace]

0 /var/www/html/sourcinghub/lsapp/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Transport/AbstractSmtpTransport.php(360): Swift_Transport_AbstractSmtpTransport->assertResponseCode('', Array) 1 /var/www/html/sourcinghub/lsapp/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Transport/AbstractSmtpTransport.php(147): Swift_Transport_AbstractSmtpTransport->readGreeting() 2 /var/www/html/sourcinghub/lsapp/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mailer.php(64): Swift_Transport_AbstractSmtpTransport->start() 3 /var/www/html/sourcinghub/lsapp/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(464): Swift_Mailer->send(Object(Swift_Message), Array) 4 /var/www/html/sourcinghub/lsapp/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(248): Illuminate\Mail\Mailer->sendSwiftMessage(Object(Swift_Message)) 5 /var/www/html/sourcinghub/lsapp/vendor/laravel/framework/src/Illuminate/Notifications/Channels/MailChannel.php(64): Illuminate\Mail\Mailer->send(Object(Illuminate\Support\HtmlString), Array, Object(Closure)) 6 /var/www/html/sourcinghub/lsapp/vendor/laravel/framework/src/Illuminate/Notifications/NotificationSender.php(113): Illuminate\Notifications\Channels\MailChannel->send(Object(App\User), Object(App\Notifications\RegisteredUser)) 7 /var/www/html/sourcinghub/lsapp/vendor/laravel/framework/src/Illuminate/Notifications/NotificationSender.php(89): Illuminate\Notifications\NotificationSender->sendToNotifiable(Object(App\User), 'fec5a728-6492-4...', Object(App\Notifications\RegisteredUser), 'mail') 8 /var/www/html/sourcinghub/lsapp/vendor/laravel/framework/src/Illuminate/Notifications/NotificationSender.php(64): Illuminate\Notifications\NotificationSender->sendNow(Object(Illuminate\Database\Eloquent\Collection), Object(App\Notifications\RegisteredUser)) 9 /var/www/html/sourcinghub/lsapp/vendor/laravel/framework/src/Illuminate/Notifications/ChannelManager.php(35): Illuminate\Notifications\NotificationSender->send(Object(Illuminate\Database\Eloquent\Collection), Object(App\Notifications\RegisteredUser)) 10 /var/www/html/sourcinghub/lsapp/vendor/laravel/framework/src/Illuminate/Notifications/RoutesNotifications.php(18): Illuminate\Notifications\ChannelManager->send(Object(App\User), Object(App\Notifications\RegisteredUser)) 11 /var/www/html/sourcinghub/lsapp/app/Http/Controllers/Auth/RegisterController.php(62): App\User->notify(Object(App\Notifications\RegisteredUser)) 12 [internal function]: App\Http\Controllers\Auth\RegisterController->register(Object(Illuminate\Http\Request))

Décrivez ici vos erreurs ou ce que vous obtenez à la place de ce que vous attendez :(

Aucune réponse