Questions tagged [mailtrap]

The Mailtrap SMTP server is a default SMTP method in Laravel.

The Mailtrap SMTP server is a default SMTP method in Laravel. It helps you avoid sending test emails to real inboxes by accident. It is designed to catch these interim emails and help you debug them. With Mailtrap, your email will never land in the real inbox in any of the email clients.

60 questions
0
votes
0 answers

laravel email verification mailtrap works on localhost but doesn't work on ubuntu server digitalocean

I have successfully implemented email confirmation of my web app on localhost using mailtrap. However, after I deploy my web app on the ubuntu server digitalocean, every time I click on the registration confirmation link from mailtrap after…
0
votes
0 answers

Not able to send email using mailtrap in laravel

I am using mailtrap for send email after submit inquiry message. firstly i created account and configure credentials in .env file mail section. and after i used \mail::To function to send email. but it is not working. please help me to resolve my…
user14299195
0
votes
1 answer

How to set up endpoints within a Azure Virtual Machine

I'm trying to set up MailTrain (a newsletter application) on an Azure VM. I created a resource group with the virtual machine, a virtual network, a network interface, a network security group, a public ip adress and a private DNS zone. MailTrain…
Hussa
  • 131
  • 2
  • 9
0
votes
1 answer

Laravel - Doesn't send messages from the site

Laravel 7.0 Sending email from localhost does not work. He writes that he cannot send a message without an email, but I put all the fields with emails. Created everything with docs.laravel. Route\web.php Route::get('contact',…
Dizmuzz
  • 15
  • 4
0
votes
2 answers

Sending Email to Users with Different Roles in Laravel 7 using Mailtrap

I am making an e-commerce website in which I want to send emails to users with different roles once order was completed. I was able to do this for a specific role only but how do I do this for different roles? Since normal users can be sellers and…
Jemy
  • 129
  • 2
  • 12
0
votes
3 answers

Sending Actual Mail with Mailtrap

Please how do one send actual mail with Mailtrap? Seems all mail stay at the inbox without actually hitting the recipient.
codegrid
  • 977
  • 2
  • 13
  • 33
0
votes
0 answers

im getiing fwrite() when i try to send email through laravel

I was sending normal until I start getting this error fwrite(): send of 18 bytes failed with errno=10054 An existing connection was forcibly closed by the remote host. this is my…
FLASH TUBE
  • 33
  • 4
0
votes
1 answer

How to send email notification in Laravel and MailTrap

I am trying to send an HTML template to MailTrap using this method public function send($result_id) { $result = Result::whereHas('user', function ($query) { $query->whereId(auth()->id()); …
Toby Nwude
  • 391
  • 7
  • 24
0
votes
1 answer

mailtrap: sending mail using mailtrap in laravel but it deliver in different mailtrap account

i am using mailtrap for my laravel project.am facing an issue like ,i already set an maitrap account in .env and mail.php file in laravel.but after sending mail,for example if there is 2 mail,one mail delivery in mail trap account which is specified…
Black Magic
  • 83
  • 1
  • 2
  • 6
0
votes
3 answers

Unable to Send Mail through node-mailer

So I was recently working on an app(in java-script) where I was building the forgot-password and reset-password Module. What I was trying to do was to send an JWT the mail specified using the Mail-trap service. Down below are the codes where that I…
0
votes
0 answers

PHP MailTrap Docker

I am having a connection issue to Mailtrap from my PHP instance. I currently have such in my docker-compose.yml version: "3.4" services: php: build: context : ./ dockerfile : Dockerfile network: host ports: -…
Devin Dixon
  • 11,553
  • 24
  • 86
  • 167
-1
votes
3 answers

stream_socket_client(): SSL operation failed with code 1. OpenSSL Error messages: error:0A00010B:SSL routines::wrong version number

I'm new to Laravel; I'm trying to send reset password email with Mailtrap, bun when I try it, I got this error: Connection could not be established with host "ssl://sandbox.smtp.mailtrap.io:465": stream_socket_client(): SSL operation failed with…
-1
votes
1 answer

Activating email system using laravel

I want to activate my project email system. I did the following steps: make notifcation (part one , part 2) create controller (make controller) create controller (route) .env for mail with mailtrap (env) Everything should work fine but it goes…
-1
votes
1 answer

create() must be of the type array (mailtrap error in laravel)

I am building a complaint management system and I configure mailtrap in laravel to send mails. What I want is when the user adds a new complaint then there will be automatically sent a 'new complaint' email to the admin. I wrote a simple code in the…
-2
votes
1 answer

How to configuration forgot password mailtrap to gmail laravel 8

I have a problem with the forgotten password process in laravel 8, initially I used mailtrap for the forgotten password process, but now I want to use gmail for the forgotten password process, does anyone understand how to configure mailtrap to…
1 2 3
4