Hi, my domain is parkandfly.is and I'm trying to send email to [email protected] when a booking is created. But for some reason I'm not receiving those emails, I tried to add my to cc and I that worked. Any ideas how to fix this?
Some basic questions need to be answered first, such as how you have it all set up, and what mail service you are using to send email out. You keep asking some pretty generic questions without supplying the basic info people need to answer.
My car didn't start this morning. Any ideas how to fix this?
$data = //my data or $request
Mail::send('emails.blade-vue', compact('data'), function ($message) use ($data) {
$message->from('[email protected]', 'Title')
->to($data->email)
->bcc([email protected])
->subject('Subject of the mail');
});
parkandfly.is mx record is pointing to google mail, your first configuration look good but as my expereince i still haven't figure out how can send email using gmail after google had some security updates.
I think you better use other standard smtp server as workaround.
I ask who you are sending as, because if you send from google using the same account name then the mail never turns up in Inbox. You have to look in Sent instead !
Well clearly you are able to send via google smtp to your own email address. If its not turning up in another gmail account then its likely to be in spam, or that other address does not exist.
Or, as I say, from experience if gmail thinks thats one of its own addresses it will be in Sent.
what is the question? and it may be better to close this thread if you have solved the problem as stated on the thread title initially and open another thread if there are different problem