53 lines
1.8 KiB
PHP
Executable File
53 lines
1.8 KiB
PHP
Executable File
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Email</title>
|
|
</head>
|
|
|
|
<body>
|
|
<h1>Olá!</h1>
|
|
<p>Temos o prazer de apresentar-lhe o acesso exclusivo ao formulário do projeto 'Ispt4.0'</p>
|
|
<a href="{{ route('formulario') }}" target="_blank"
|
|
style="background-color: #00B0EA; border: none; color: white; padding: 15px 32px; text-align: center; text-decoration: none; display: inline-block; font-size: 16px; margin: 4px 2px; cursor: pointer;">Acessar
|
|
Formulário</a>
|
|
<p>Se não estava à espera deste e-mail ou não reconhece o projeto 'Ispt4.0', por favor, ignore esta mensagem.</p>
|
|
<p>Agradecemos a sua atenção e ficamos ao dispor para qualquer esclarecimento.</p>
|
|
<p>Com os melhores cumprimentos,</p>
|
|
<p> Ispt4.0</p>
|
|
<img src="{{ asset('img/ispt/4.0/logo4.0.jpg')}}" alt="">
|
|
</body>
|
|
|
|
</html>
|
|
|
|
|
|
{{-- <x-mail::message>
|
|
|
|
<h1>
|
|
@if (! empty($greeting))
|
|
{{ $greeting }}
|
|
@else
|
|
@if ($level === 'error')
|
|
@lang('Whoops!')
|
|
@else
|
|
@lang('Olá!')
|
|
@endif
|
|
@endif
|
|
</h1>
|
|
|
|
<p>Temos o prazer de apresentar-lhe o acesso exclusivo ao formulário do projeto 'ISPT4.0'</p>
|
|
|
|
@isset($actionText)
|
|
<a href="{{ $actionUrl }}" target="_blank" style="background-color: #00B0EA; border: none; color: white; padding: 15px 32px; text-align: center; text-decoration: none; display: inline-block; font-size: 16px; margin: 4px 2px; cursor: pointer;">{{ $actionText }}</a>
|
|
@endisset
|
|
|
|
<p>Se não estava à espera deste e-mail ou não reconhece o projeto 'ISPT4.0', por favor, ignore esta mensagem.</p>
|
|
<p>Agradecemos a sua atenção e ficamos ao dispor para qualquer esclarecimento.</p>
|
|
<p>Com os melhores cumprimentos,</p>
|
|
<p>Yure Ispt4.0</p>
|
|
|
|
<img src="{{ asset('img/ispt/4.0/logo4.0.jpg')}}" alt="">
|
|
|
|
</x-mail::message> --}} |