سلام دوستان
در موقع ارسال ایمیل خطای زیر رخ میده:
اکشن ارسال ایمیل اینه:
تنظیمات فایل env هم اینه:
لطفاً راهنمایی کنید.
متشکرم
در موقع ارسال ایمیل خطای زیر رخ میده:
نقل قول:
Swift_TransportException in AbstractSmtpTransport.php line 383: Expected response code 250 but got code "530", with message "530 5.7.1 Authentication required"
اکشن ارسال ایمیل اینه:
public function contact(Request $request){ $this->validate($request, [ 'name' => 'required|min:3|max:255|string', 'subject' => 'required|min:3|max:255', 'email' => 'required|max:255|email', 'body' => 'required|max:5000', ] ); $array = [ 'name' => $request->name, 'subject' => $request->subject, 'email' => $request->email, 'body' => $request->body, ]; Mail::send('emails.contact', $array, function($message) use ($array) { $message->subject($array['subject']); $message->from($array['email'], $array['name']); $message->to('example@gmail.com'); }); }
تنظیمات فایل env هم اینه:
REDIS_HOST=localhost REDIS_PASSWORD=null REDIS_PORT=6379 MAIL_DRIVER=smtp MAIL_HOST=smtp.gmail.com MAIL_PORT=587 MAIL_USERNAME=MyMail MAIL_PASSWORD=MyPassword MAIL_ENCRYPTION=tls
لطفاً راهنمایی کنید.
متشکرم