My site is up and running, and I use Postmark for transactional emails, paying $15 a month for that, on top of my bubble subscription.
Now I’d like to start sending a weekly newsletter to those users who opted in when they joined my app.
Creating HTML in a drag-and-drop generator and then setting up an API connector to send broadcast emails with Postmark has proved to be really clunky and difficult, not really the manageable no-code experience I was hoping it would be.
I’m curious about what others out there are using to send marketing newsletters. Is there something I’m not seeing?
Thanks!
djaxad
June 13, 2024, 10:56am
2
Hello!
You can generate an HTML template you like with chat-gpt support and place keywords inside.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
body {
font-family: Arial, sans-serif;
background-color: #F0F0F0;
margin: 0;
padding: 0;
}
.container {
max-width: 600px;
margin: 0 auto;
background-color: #FFFFFF;
border-radius: 10px;
overflow: hidden;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.header {
background-color: #7168FF;
color: #FFFFFF;
padding: 20px;
text-align: center;
}
.header img {
max-width: 150px;
}
.content {
padding: 20px;
color: #2B2B2B;
}
.content h1 {
color: #7168FF;
}
.button {
display: block;
width: 200px;
margin: 20px auto;
padding: 10px;
text-align: center;
background-color: #59BF96;
color: #FFFFFF;
text-decoration: none;
border-radius: 5px;
}
.footer {
background-color: #2B2B2B;
color: #FFFFFF;
text-align: center;
padding: 10px;
font-size: 12px;
}
</style>
</head>
<body>
<div class="container">
<div class="header">
<img src="logo url" alt="dela.team Logo">
</div>
<div class="content">
<h1>{{email_title}}</h1>
<p>Hello, {{user_name|}},</p>
<p>{{email_body}}</p>
<a href="{{button_link}}" class="button">{{button_name}}</a>
</div>
<div class="footer">
<p>© 2024 </p>
</div>
</div>
</body>
</html>
Took a while, but I’ve solved this!
Hi everyone! I’ve posted here a couple of times over the past 6 months of building my app asking for tips on how to set up an affordable and easy-to-use email sender. I finally got this working perfectly for my site and wanted to share what worked for me here.
Here’s my stack:
Postmark for sending transactional and broadcast emails
Designmodo for easily creating free and beautiful HTML marketing emails
Postmark Template Plugin for sending broadcast emails to my subscribers
I chose Postmark b…