I am trying to send form data using the Gmail or Mail client using AJAX but Gmail and others skip all scripts; it's almost impossible to run this script.
I try to send normal form data but the form action runs in a new tab and makes GET the default method and can't continue.
If I make my route to method get return message error:
MethodNotAllowedHttpException No message
How can I make this or skip this?
MethodNotAllowedHttpException in laravel means, that you have maybe a Route::get("/test", ..)
but call it via POST for example.
You are using the wrong method for your laravel route.
For more info see https://laravel.com/docs/5.6/routing under "Available Router Methods".