Lite
- 5 GB storage
- 500 emails/day
- Email in your browser
- Calendar & contacts
- Drive storage
Inbox
IMAP syncedimport smtplib
from email.mime.text import MIMEText
msg = MIMEText("Thanks for signing up.")
msg["Subject"], msg["To"] = "Welcome!", to
with smtplib.SMTP("mail.ucnmail.com", 587) as server:
server.starttls()
server.login(user, password)
server.send_message(msg)We'll tell you exactly which DNS records to create.
We check propagation and tell you the moment it's live.
Mailboxes are ready instantly. Invite your team or connect SMTP.
Welcome email
Delivered just now
Password reset
Delivered just now
Invoice #1042
Delivered just now
import nodemailer from "nodemailer";
const transporter = nodemailer.createTransport({
host: "mail.ucnmail.com",
port: 587,
auth: {
user: "[email protected]",
pass: "Your password",
},
});
await transporter.sendMail({
from: "[email protected]",
to: "[email protected]",
subject: "Welcome!",
html: "<p>Thanks for signing up.</p>",
});Any client that speaks IMAP, SMTP, or POP3 connects without a plugin.
Attachments, documents, and archives live alongside the mailbox they belong to.
Send a public link, or give named people access. No account needed to download.
Q3-report.pdf
Standup
09:30
Design review
14:00
Client call
11:00
1:1 with Priya
15:30
Sprint planning
10:00
Team lunch
12:30
Priya Nair
Diego Alvarez
Amara Chen
Noah Kim
Spam scoring
Content and reputation checked before the message is ever queued.
SPF, DKIM, DMARC
Sender authentication verified on every inbound message.
Malware scanning
Attachments opened in isolation and dropped if they misbehave.
Phishing links
Known-malicious domains are rewritten out before delivery.
Included in every tier, at no extra cost.
Billing is per mailbox — add mailboxes on any tier as your team grows, and change a mailbox's tier anytime from your dashboard. There's no separate account-wide plan to manage.