- Menambahkan kelas EmailBlastMail untuk mengelola pengiriman email blast. - Mengimplementasikan metode build untuk mengatur subjek dan konten email. - Menambahkan tampilan blast.blade.php untuk format email blast.
25 lines
468 B
PHP
25 lines
468 B
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Email Blast</title>
|
|
<style>
|
|
body{
|
|
font-family: monospace;
|
|
margin: 0;
|
|
}
|
|
|
|
.ql-align-center{
|
|
text-align: center;
|
|
}
|
|
.ql-align-right{
|
|
text-align: right;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
{!! $content !!}
|
|
</body>
|
|
</html>
|