could you please show me your email blade code?
I have not used the image but my tailwind styles persist after the mail send to user. I have only 1 mail tried with the mailable class and blade view to did not created any layouts for this.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>New Job Application Recieved</title>
@vite('resources/css/app.css')
</head>
<body>
<div class="h-screen flex flex-col justify-center items-center text-center">
<h2 class="text-lg font-semibold">New Job Application Received</h2>
<p class="text-md font-medium">
Hello, <strong>{{ $job->employer->name }}</strong><br>
A new candidate <strong>{{ $user->name }}</strong> has applied for the position of
<strong>{{ $job->title }}</strong>.
</p>
<div class="my-5">
<a href="http://pixel-position-jobs.test/posted/jobs/{{ $job->id }}/recieved/applications/show?search={{ $jobApplication->mobile }}"
class="bg-blue-600 hover:bg-blue-700 shadow rounded-xl text-white px-3 py-2">
View Application
</a>
</div>
</div>
</body>
</html>