Questions tagged [laravel-mail]

Laravel provides a clean, simple API over the popular SwiftMailer library with drivers for SMTP, Mailgun, SparkPost, Amazon SES, and sendmail, allowing you to quickly get started sending mail through a local or cloud-based service of your choice.

Laravel provides drivers for SMTP, Mailgun, Mandrill, Amazon SES, PHP's mail function, and sendmail, allowing you to quickly get started sending mail through a local or cloud based service of your choice. Read more in documentation

189 questions
0
votes
1 answer

Customise Reset Password Email and pass User Data in Laravel 5.3

I am using Laravel 5.3 and customizing the Password Reset Email Template. I have done the following changes to create my own html email for the notification using a custom Mailable class. This is my progress so far: ForgotPasswordController: public…
Neel
  • 8,044
  • 21
  • 75
  • 119
0
votes
1 answer

Laravel with Mailgun setup

I'm having troubles setting up Mailgun with Laravel. I keep getting the following message: ClientException in RequestException.php line 111: Client error: `POST https://api.mailgun.net/v3//messages.mime` resulted in a ` 404 NOT FOUND`…
Kaley36
  • 193
  • 6
  • 18
0
votes
1 answer

How do I change laravel mail body?

I used laravel default Auth to learn laravel by using php artisan make:auth. Where I also used default mailing of laravel. I want to know about mailing process. I able to send password reset mail. But I want to change this default mail format. Where…
Jahidul Islam
  • 119
  • 1
  • 11
0
votes
2 answers

sending random ids - Laravel email

Good day I'm using Mailgun to send emails to the users with required info from the order after submitting the form,I managed to send the subject and the email address ,but I'm having trouble sending the random number that gets assigned on the…
SS2015
  • 5
  • 3
0
votes
1 answer

config mail on laravel

i want config mail on laravel 5.2, i have a hosting mail with hostinger.com. how i can configure mail parameters on laravel?? i put this on the .env…
Reco Jhonatan
  • 1,059
  • 3
  • 16
  • 28
-1
votes
1 answer

I can't get emails to my inbox, even though i can see a successful transaction in mailtrap

i just sent an email using mailtrap on laravel, i can get the notifications on mailtrap, but the email does not get to the intended user emails. What could be the problem and how can i obtain a solution I've tried changing the default "from"…
-1
votes
1 answer

Is this a good way of sending multiple mails at once in Laravel?

I am still learning Laravel, and need some advice... Long story short, I have a small script which is supposed to send a mail to a customer 15 days before their contract needs renewal. Now, the code does work. And our list of customers is relatively…
Imran Isak
  • 48
  • 1
  • 7
-1
votes
4 answers

Laravel send email to address from database

In my index view I show all the users and there is a button that will change the user status to active and not active. The code looks like this: @foreach($users as $user) {{$user->name}} {{$user->surname}} …
user agent
  • 2,762
  • 6
  • 29
  • 74
-1
votes
1 answer

Send notification to email

I work on a website project with the laravel framework and I want when I click on the button send a notification either send to the user's email $invite = Invite::create([ 'name' => $request->get('name'), 'email' =>…
veki rook
  • 5
  • 9
1 2 3
12
13