Current section
Files
Jump to
Current section
Files
lib/bamboo/plug/no_emails.html.eex
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Email Preview</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/4.0.0/normalize.css" charset="utf-8">
<style>
html {
height: 100%;
}
body {
min-height: 100%;
display: flex;
justify-content: space-around;
align-items: center;
height: 100%;
font-family: sans-serif;
}
.notice {
width: 80%;
max-width: 500px;
padding: 40px 50px;
text-align: center;
background-color: #f8f8f8;
border-radius: 12px;
}
h1 {
font-weight: 700;
font-size: 18px;
}
p {
color: #555;
line-height: 25px;
}
</style>
</head>
<body>
<main class="notice">
<h1>No emails have been sent</h1>
<p>
If you think you have sent an email and it is not showing up, make sure
you are using Bamboo.LocalAdapter for your mailer.
</p>
</section>
</body>
</html>