Lumen with Mail - Unable to resolve NULL driver for [IlluminateMailTransportManager]





.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}







1















I'm trying to send emails from Lumen 5.7, so as mentioned by many sources, I ..




  1. added illuminate/mail and guzzlehttp/guzzle to my application

  2. created "config/mail.php" and "config/services.php" from Laravel Repository

  3. uncommented $app->withFacades();, registered IlluminateMailMailServiceProvider::class and added $app->configure('services'); and $app->configure('mail'); before return $app; in bootstrap/app.php


  4. added mailgun settings to .env



    MAIL_DRIVER=mailgun



    MAILGUN_DOMAIN=ssss



    MAILGUN_SECRET=xxxxx



  5. tried to send an email Mail::raw('Raw string email', function($msg) { $msg->to(['x@x.com']); $msg->from(['x@x.com']); });



but still get this error message Unable to resolve NULL driver for [IlluminateMailTransportManager].



P.S. This is my first experience with Lumen and I did search to resolve this problem for many hours, but I cannot.



Thanks in advance.










share|improve this question























  • I have the same problem, and I can see that no answer is correct. Have you solved your problem?

    – Richard Fu
    Feb 11 at 3:08











  • Alright I've fixed mine.... I stupidly put $app->configure('mail'); after return $app, which seems not in your case.

    – Richard Fu
    Feb 11 at 5:54


















1















I'm trying to send emails from Lumen 5.7, so as mentioned by many sources, I ..




  1. added illuminate/mail and guzzlehttp/guzzle to my application

  2. created "config/mail.php" and "config/services.php" from Laravel Repository

  3. uncommented $app->withFacades();, registered IlluminateMailMailServiceProvider::class and added $app->configure('services'); and $app->configure('mail'); before return $app; in bootstrap/app.php


  4. added mailgun settings to .env



    MAIL_DRIVER=mailgun



    MAILGUN_DOMAIN=ssss



    MAILGUN_SECRET=xxxxx



  5. tried to send an email Mail::raw('Raw string email', function($msg) { $msg->to(['x@x.com']); $msg->from(['x@x.com']); });



but still get this error message Unable to resolve NULL driver for [IlluminateMailTransportManager].



P.S. This is my first experience with Lumen and I did search to resolve this problem for many hours, but I cannot.



Thanks in advance.










share|improve this question























  • I have the same problem, and I can see that no answer is correct. Have you solved your problem?

    – Richard Fu
    Feb 11 at 3:08











  • Alright I've fixed mine.... I stupidly put $app->configure('mail'); after return $app, which seems not in your case.

    – Richard Fu
    Feb 11 at 5:54














1












1








1








I'm trying to send emails from Lumen 5.7, so as mentioned by many sources, I ..




  1. added illuminate/mail and guzzlehttp/guzzle to my application

  2. created "config/mail.php" and "config/services.php" from Laravel Repository

  3. uncommented $app->withFacades();, registered IlluminateMailMailServiceProvider::class and added $app->configure('services'); and $app->configure('mail'); before return $app; in bootstrap/app.php


  4. added mailgun settings to .env



    MAIL_DRIVER=mailgun



    MAILGUN_DOMAIN=ssss



    MAILGUN_SECRET=xxxxx



  5. tried to send an email Mail::raw('Raw string email', function($msg) { $msg->to(['x@x.com']); $msg->from(['x@x.com']); });



but still get this error message Unable to resolve NULL driver for [IlluminateMailTransportManager].



P.S. This is my first experience with Lumen and I did search to resolve this problem for many hours, but I cannot.



Thanks in advance.










share|improve this question














I'm trying to send emails from Lumen 5.7, so as mentioned by many sources, I ..




  1. added illuminate/mail and guzzlehttp/guzzle to my application

  2. created "config/mail.php" and "config/services.php" from Laravel Repository

  3. uncommented $app->withFacades();, registered IlluminateMailMailServiceProvider::class and added $app->configure('services'); and $app->configure('mail'); before return $app; in bootstrap/app.php


  4. added mailgun settings to .env



    MAIL_DRIVER=mailgun



    MAILGUN_DOMAIN=ssss



    MAILGUN_SECRET=xxxxx



  5. tried to send an email Mail::raw('Raw string email', function($msg) { $msg->to(['x@x.com']); $msg->from(['x@x.com']); });



but still get this error message Unable to resolve NULL driver for [IlluminateMailTransportManager].



P.S. This is my first experience with Lumen and I did search to resolve this problem for many hours, but I cannot.



Thanks in advance.







php email lumen






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Oct 3 '18 at 0:07









Louay HamadaLouay Hamada

5231717




5231717













  • I have the same problem, and I can see that no answer is correct. Have you solved your problem?

    – Richard Fu
    Feb 11 at 3:08











  • Alright I've fixed mine.... I stupidly put $app->configure('mail'); after return $app, which seems not in your case.

    – Richard Fu
    Feb 11 at 5:54



















  • I have the same problem, and I can see that no answer is correct. Have you solved your problem?

    – Richard Fu
    Feb 11 at 3:08











  • Alright I've fixed mine.... I stupidly put $app->configure('mail'); after return $app, which seems not in your case.

    – Richard Fu
    Feb 11 at 5:54

















I have the same problem, and I can see that no answer is correct. Have you solved your problem?

– Richard Fu
Feb 11 at 3:08





I have the same problem, and I can see that no answer is correct. Have you solved your problem?

– Richard Fu
Feb 11 at 3:08













Alright I've fixed mine.... I stupidly put $app->configure('mail'); after return $app, which seems not in your case.

– Richard Fu
Feb 11 at 5:54





Alright I've fixed mine.... I stupidly put $app->configure('mail'); after return $app, which seems not in your case.

– Richard Fu
Feb 11 at 5:54












2 Answers
2






active

oldest

votes


















0














Use mail base config from Laravel (config/mail.php)



<?php

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", "sendmail", "mailgun", "mandrill", "ses",
| "sparkpost", "log", "array"
|
*/

'driver' => env('MAIL_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' => env('MAIL_HOST', 'smtp.mailgun.org'),

/*
|--------------------------------------------------------------------------
| 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' => env('MAIL_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' => [
'address' => env('MAIL_FROM_ADDRESS', 'hello@example.com'),
'name' => env('MAIL_FROM_NAME', 'Example'),
],

/*
|--------------------------------------------------------------------------
| 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' => env('MAIL_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' => env('MAIL_USERNAME'),

'password' => env('MAIL_PASSWORD'),

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

/*
|--------------------------------------------------------------------------
| Markdown Mail Settings
|--------------------------------------------------------------------------
|
| If you are using Markdown based email rendering, you may configure your
| theme and component paths here, allowing you to customize the design
| of the emails. Or, you may simply stick with the Laravel defaults!
|
*/

'markdown' => [
'theme' => 'default',

'paths' => [
resource_path('views/vendor/mail'),
],
],

];


And don't forget to install dependency



composer require guzzlehttp/guzzle





share|improve this answer


























  • Thank you ribrow for your answer, I've already tried what you suggested as I mentioned in my question.

    – Louay Hamada
    Nov 18 '18 at 13:26



















0














If the config folder is in the "app" folder, then remove the "config" folder to the "main folder". it works for me.
Use mail base config from Laravel (config/mail.php), sorry to take your words ribrow :v






share|improve this answer
























  • provides proper explanation of question.

    – Harsh Manvar
    Feb 7 at 5:48












Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f52618010%2flumen-with-mail-unable-to-resolve-null-driver-for-illuminate-mail-transportma%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























2 Answers
2






active

oldest

votes








2 Answers
2






active

oldest

votes









active

oldest

votes






active

oldest

votes









0














Use mail base config from Laravel (config/mail.php)



<?php

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", "sendmail", "mailgun", "mandrill", "ses",
| "sparkpost", "log", "array"
|
*/

'driver' => env('MAIL_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' => env('MAIL_HOST', 'smtp.mailgun.org'),

/*
|--------------------------------------------------------------------------
| 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' => env('MAIL_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' => [
'address' => env('MAIL_FROM_ADDRESS', 'hello@example.com'),
'name' => env('MAIL_FROM_NAME', 'Example'),
],

/*
|--------------------------------------------------------------------------
| 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' => env('MAIL_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' => env('MAIL_USERNAME'),

'password' => env('MAIL_PASSWORD'),

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

/*
|--------------------------------------------------------------------------
| Markdown Mail Settings
|--------------------------------------------------------------------------
|
| If you are using Markdown based email rendering, you may configure your
| theme and component paths here, allowing you to customize the design
| of the emails. Or, you may simply stick with the Laravel defaults!
|
*/

'markdown' => [
'theme' => 'default',

'paths' => [
resource_path('views/vendor/mail'),
],
],

];


And don't forget to install dependency



composer require guzzlehttp/guzzle





share|improve this answer


























  • Thank you ribrow for your answer, I've already tried what you suggested as I mentioned in my question.

    – Louay Hamada
    Nov 18 '18 at 13:26
















0














Use mail base config from Laravel (config/mail.php)



<?php

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", "sendmail", "mailgun", "mandrill", "ses",
| "sparkpost", "log", "array"
|
*/

'driver' => env('MAIL_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' => env('MAIL_HOST', 'smtp.mailgun.org'),

/*
|--------------------------------------------------------------------------
| 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' => env('MAIL_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' => [
'address' => env('MAIL_FROM_ADDRESS', 'hello@example.com'),
'name' => env('MAIL_FROM_NAME', 'Example'),
],

/*
|--------------------------------------------------------------------------
| 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' => env('MAIL_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' => env('MAIL_USERNAME'),

'password' => env('MAIL_PASSWORD'),

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

/*
|--------------------------------------------------------------------------
| Markdown Mail Settings
|--------------------------------------------------------------------------
|
| If you are using Markdown based email rendering, you may configure your
| theme and component paths here, allowing you to customize the design
| of the emails. Or, you may simply stick with the Laravel defaults!
|
*/

'markdown' => [
'theme' => 'default',

'paths' => [
resource_path('views/vendor/mail'),
],
],

];


And don't forget to install dependency



composer require guzzlehttp/guzzle





share|improve this answer


























  • Thank you ribrow for your answer, I've already tried what you suggested as I mentioned in my question.

    – Louay Hamada
    Nov 18 '18 at 13:26














0












0








0







Use mail base config from Laravel (config/mail.php)



<?php

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", "sendmail", "mailgun", "mandrill", "ses",
| "sparkpost", "log", "array"
|
*/

'driver' => env('MAIL_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' => env('MAIL_HOST', 'smtp.mailgun.org'),

/*
|--------------------------------------------------------------------------
| 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' => env('MAIL_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' => [
'address' => env('MAIL_FROM_ADDRESS', 'hello@example.com'),
'name' => env('MAIL_FROM_NAME', 'Example'),
],

/*
|--------------------------------------------------------------------------
| 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' => env('MAIL_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' => env('MAIL_USERNAME'),

'password' => env('MAIL_PASSWORD'),

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

/*
|--------------------------------------------------------------------------
| Markdown Mail Settings
|--------------------------------------------------------------------------
|
| If you are using Markdown based email rendering, you may configure your
| theme and component paths here, allowing you to customize the design
| of the emails. Or, you may simply stick with the Laravel defaults!
|
*/

'markdown' => [
'theme' => 'default',

'paths' => [
resource_path('views/vendor/mail'),
],
],

];


And don't forget to install dependency



composer require guzzlehttp/guzzle





share|improve this answer















Use mail base config from Laravel (config/mail.php)



<?php

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", "sendmail", "mailgun", "mandrill", "ses",
| "sparkpost", "log", "array"
|
*/

'driver' => env('MAIL_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' => env('MAIL_HOST', 'smtp.mailgun.org'),

/*
|--------------------------------------------------------------------------
| 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' => env('MAIL_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' => [
'address' => env('MAIL_FROM_ADDRESS', 'hello@example.com'),
'name' => env('MAIL_FROM_NAME', 'Example'),
],

/*
|--------------------------------------------------------------------------
| 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' => env('MAIL_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' => env('MAIL_USERNAME'),

'password' => env('MAIL_PASSWORD'),

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

/*
|--------------------------------------------------------------------------
| Markdown Mail Settings
|--------------------------------------------------------------------------
|
| If you are using Markdown based email rendering, you may configure your
| theme and component paths here, allowing you to customize the design
| of the emails. Or, you may simply stick with the Laravel defaults!
|
*/

'markdown' => [
'theme' => 'default',

'paths' => [
resource_path('views/vendor/mail'),
],
],

];


And don't forget to install dependency



composer require guzzlehttp/guzzle






share|improve this answer














share|improve this answer



share|improve this answer








edited Nov 16 '18 at 18:59









Michael Lihs

2,63742547




2,63742547










answered Nov 16 '18 at 18:42









ribrowribrow

1




1













  • Thank you ribrow for your answer, I've already tried what you suggested as I mentioned in my question.

    – Louay Hamada
    Nov 18 '18 at 13:26



















  • Thank you ribrow for your answer, I've already tried what you suggested as I mentioned in my question.

    – Louay Hamada
    Nov 18 '18 at 13:26

















Thank you ribrow for your answer, I've already tried what you suggested as I mentioned in my question.

– Louay Hamada
Nov 18 '18 at 13:26





Thank you ribrow for your answer, I've already tried what you suggested as I mentioned in my question.

– Louay Hamada
Nov 18 '18 at 13:26













0














If the config folder is in the "app" folder, then remove the "config" folder to the "main folder". it works for me.
Use mail base config from Laravel (config/mail.php), sorry to take your words ribrow :v






share|improve this answer
























  • provides proper explanation of question.

    – Harsh Manvar
    Feb 7 at 5:48
















0














If the config folder is in the "app" folder, then remove the "config" folder to the "main folder". it works for me.
Use mail base config from Laravel (config/mail.php), sorry to take your words ribrow :v






share|improve this answer
























  • provides proper explanation of question.

    – Harsh Manvar
    Feb 7 at 5:48














0












0








0







If the config folder is in the "app" folder, then remove the "config" folder to the "main folder". it works for me.
Use mail base config from Laravel (config/mail.php), sorry to take your words ribrow :v






share|improve this answer













If the config folder is in the "app" folder, then remove the "config" folder to the "main folder". it works for me.
Use mail base config from Laravel (config/mail.php), sorry to take your words ribrow :v







share|improve this answer












share|improve this answer



share|improve this answer










answered Feb 7 at 5:20









Muhammad Rizki WahyudiMuhammad Rizki Wahyudi

1




1













  • provides proper explanation of question.

    – Harsh Manvar
    Feb 7 at 5:48



















  • provides proper explanation of question.

    – Harsh Manvar
    Feb 7 at 5:48

















provides proper explanation of question.

– Harsh Manvar
Feb 7 at 5:48





provides proper explanation of question.

– Harsh Manvar
Feb 7 at 5:48


















draft saved

draft discarded




















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f52618010%2flumen-with-mail-unable-to-resolve-null-driver-for-illuminate-mail-transportma%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Xamarin.iOS Cant Deploy on Iphone

Glorious Revolution

Dulmage-Mendelsohn matrix decomposition in Python