laravel-mail Questions
2
Solved
I'm developing a new Laravel application. When I'm using mail to send messages via contact form in my website, I'm getting the following error:
Process could not be started [The system cannot fi...
Bearce asked 15/12, 2018 at 7:51
6
I am trying to setup emails in my Laravel aplication, I have my env file something like this:
MAIL_DRIVER=smtp
MAIL_HOST=smtp.gmail.com
MAIL_PORT=587
[email protected]
MAIL_PASSWORD=xxx
MAIL_...
Lukash asked 25/10, 2018 at 8:58
11
I am getting below error:
Connection could not be established with host smtp.gmail.com
[php_network_getaddresses: getaddrinfo failed: No such host is known.
0]
My .env file looks like:
MAIL_HOST=...
Ruby asked 17/1, 2017 at 6:18
3
Solved
How does one go about attaching multiple files to laravel 5.3 mailable?
I can attach a single file easily enough using ->attach($form->filePath) on my mailable build method. However, soon as...
Eury asked 17/3, 2017 at 2:49
2
Solved
I have no idea where could I found the header logo example below(squared):
My content code:
public function toMail($notifiable)
{
return (new MailMessage)
->line('The introduction to the...
Insurgent asked 15/4, 2019 at 21:15
6
Solved
With the Laravel 5.3 Notification feature, I see that the notifications are sent to users like this:
$user->notify(new InvoicePaid($invoice));
Where I believe $user is the notifiable entity. ...
Antibiotic asked 24/11, 2016 at 7:16
1
I am using Laravel to send out some emails from RoundCube. The trouble is that I keep getting the same error
Failed to authenticate on SMTP server with username "[email protected]" u...
Dianadiandra asked 10/11, 2020 at 22:8
1
Solved
I am using Laravel 7 and I want to send an email using the Sendemail driver via Laravel Mail facade. It worked when I used the PHP mail function but I want to use the Laravel Mail facade instead.
M...
Average asked 6/6, 2020 at 11:36
5
Solved
I built a contact form which is sending two emails instead of one. Here's the controller:
<?php
namespace App\Http\Controllers;
use App\Http\Requests\ContactFormRequest;
use App\Mail\ClientCo...
Micrometer asked 11/7, 2017 at 18:26
1
Solved
I have tried using sendmail in laravel but it did not work . Check my post here Sending mails through Laravel is inconsistent
So , i tried using mailtrap's fake smtp server in laravel. It's not wo...
Fondness asked 18/8, 2019 at 7:25
2
I do not want to create a new markdown file, only to include a line break in salutation "without a paragraph".
I tested everything:
->salutation("Atenciosamente,\n\n{$app}")
->salutation("{...
Opheliaophelie asked 25/9, 2018 at 13:31
2
Solved
I have the main mail template (resources/views/mail.blade.php). This is a common template to use all of my mail like for forgot password or for change new password. The content for mail.blade.php i...
Reiff asked 31/5, 2018 at 13:57
4
Solved
I am trying to use Mailgun
'driver' => env('MAIL_DRIVER', 'mailgun'),
'host' => env('MAIL_HOST', 'smtp.mailgun.org'),
'port' => env('MAIL_PORT', 587),
MAILGUN_DOMAIN=xxxxxxxxxx,
MAILGUN...
Upbuild asked 16/5, 2017 at 13:11
1
Solved
I followed this answer to publish the default email templates in my application with:
php artisan vendor:publish --tag=laravel-notifications
php artisan vendor:publish --tag=laravel-mail
This w...
Casta asked 13/12, 2018 at 22:34
3
I am using Laravel Mailable to send email, and I want to log the email that was successfully sent.
Laravel Mailable have default event that was fired after the email was sent
https://laravel.com/...
Purlieu asked 17/4, 2018 at 6:2
3
Solved
I'm trying to change the default subject field in the verification email that comes with Laravel 5.7. How and where do I change it? I have searched all over the place and online. Because it's brand...
Cuevas asked 19/9, 2018 at 14:19
4
Solved
I've changed my e-mail configuration in the .env file but when I'm trying to send a mail, it's using my old configuration.
I've tried some commands:
php artisan clear-compiled,
php artisan cach...
Krell asked 20/1, 2017 at 9:12
2
Solved
Does anyone know how to override the functions used within laravel's password broker? I know the docs:
https://laravel.com/docs/5.3/passwords#resetting-views
Give information on what to do for th...
Bills asked 10/11, 2016 at 16:19
1
Solved
I'm setting up my Laravel website, and now comes the part where I configure Mailgun to send and receive emails.
I followed different guides to do that, yet I don't feel I'm doing it right. I'm now ...
Wagers asked 22/3, 2018 at 16:32
3
Solved
I am trying to add the user's first name in the notification emails. At the moment, Laravel notification emails starts like:
Hello,
And I want to change it to:
Hello Donald,
Right now, I have...
Pratique asked 20/11, 2016 at 12:4
1
Solved
I don't see anything about sending Mail without creating a Mailable class in Laravel 5.5 documentation. I know it was possible before (5.2) but I don't remember how.
Is it still possible? Is it de...
Selfannihilation asked 20/11, 2017 at 14:22
2
Solved
I had ordinary Mailable that had some hardcoded content.
I've published mailable views, changed content to markdown and replaced ->view with ->markdown.
Now mail have nicely formated markdo...
Mulligan asked 22/8, 2017 at 23:14
0
I am trying to send email with an attachment in a developing environment - using mailtrap for the same. This attachment can be of any file type. But, I always end up receiving the error:
Expected...
Garrett asked 10/6, 2017 at 6:59
1
Solved
The Laravel Documentation describes the ability to schedule a mail for later delivery, with the following example:
$when = Carbon::now()->addMinutes(10);
Mail::to($request->user())
->cc...
Leverage asked 16/5, 2017 at 15:35
3
Solved
I upgrade from Laravel 4.1 to 5.4. Queue migration is difficult.
Firstly, I commented out iron route from routes:
Route::post('queue/receive', function()
{
return Queue::marshal();
});
Then, I...
Goeger asked 19/2, 2017 at 18:59
1 Next >
© 2022 - 2024 — McMap. All rights reserved.