06 — Email (Microhost Mail)
Your PQC-hardened email account is live at your-username@drklynx-mail.com. Learn how to use it.
Account Details
Your email account was created when you signed up:
Username: your-username
Email Address: your-username@drklynx-mail.com
Webmail: https://mail.drklynx-mail.com/webmail
Your temporary password is in your credentials email. Change it immediately after first login.
Webmail Login
- Go to
https://mail.drklynx-mail.com/webmail - Enter your username and password
- You're in. Send, receive, and manage emails like Gmail or Outlook.
Webmail is the easiest way to get started. No clients or config needed.
SMTP/IMAP for Integration
If you want to use your email in a custom app, send transactional emails, or connect to your email client:
SMTP Server: mail.drklynx-mail.com
SMTP Port: 587 (TLS)
IMAP Server: mail.drklynx-mail.com
IMAP Port: 993 (SSL)
Username: your-username@drklynx-mail.com
Password: (your password)
Node.js Example (Sending Email)
Using Nodemailer:
npm install nodemailer
import nodemailer from "nodemailer";
const transporter = nodemailer.createTransport({
host: "mail.drklynx-mail.com",
port: 587,
secure: false,
auth: {
user: "your-username@drklynx-mail.com",
pass: "your-password",
},
});
await transporter.sendMail({
from: "your-username@drklynx-mail.com",
to: "recipient@example.com",
subject: "Hello from Microhost",
text: "This email was sent via SMTP.",
html: "<p>This email was sent via SMTP.</p>",
});
console.log("Email sent!");
Python Example
Using smtplib:
import smtplib
from email.mime.text import MIMEText
from email.mime.multipart import MIMEMultipart
sender = "your-username@drklynx-mail.com"
password = "your-password"
recipient = "recipient@example.com"
message = MIMEMultipart()
message["From"] = sender
message["To"] = recipient
message["Subject"] = "Hello from Microhost"
message.attach(MIMEText("This email was sent via SMTP.", "plain"))
with smtplib.SMTP("mail.drklynx-mail.com", 587) as server:
server.starttls()
server.login(sender, password)
server.send_message(message)
print("Email sent!")
Sending Limits
Your daily sending limit depends on your tier:
| Tier | Limit |
|---|---|
| Starter | 500/day |
| Pro | 5,000/day |
| Business | 50,000/day |
| Enterprise | Unlimited |
If you hit your limit, emails are queued and sent the next day. Contact support@drklynx.com to upgrade or discuss high-volume sending.
DKIM & SPF (Email Authentication)
Microhost Mail automatically provides DKIM signing for all outbound emails to improve deliverability. Your emails are cryptographically signed, reducing spam filtering.
If you use a custom domain later (see below), we'll provision domain-specific DKIM keys.
Custom Domain Email (Coming Soon)
Currently, you have @drklynx-mail.com. Soon, you'll be able to upgrade to a custom domain (e.g., your-address@yourcompany.com).
When available, you'll:
- Go to your dashboard at
app.drklynx.com/microhost/<customer_id> - Add your custom domain
- Add DNS records (MX, TXT) as instructed
- Verify domain ownership
- Start using
your-address@yourcompany.com
This feature is in development and will roll out by Day 30.
Changing Your Password
In webmail:
- Click Settings (gear icon)
- Click Accounts
- Click Security
- Enter your current password and new password
- Click Save
Forwarding Emails
In webmail, you can auto-forward incoming emails to another address:
- Click Settings > Forwarding
- Enter the email address to forward to
- Choose whether to keep a copy in Microhost Mail
- Click Enable
Vacation / Auto-Reply
In webmail:
- Click Settings > Vacation
- Enable "Vacation mode"
- Set start and end dates
- Write your auto-reply message
- Click Save
Storage
Your Microhost Mail account includes:
| Tier | Storage |
|---|---|
| Starter | 5 GB |
| Pro | 25 GB |
| Business | 100 GB |
| Enterprise | 500 GB |
Check your usage in webmail under Settings > Storage.
Troubleshooting
"Can't Log In to Webmail"
- Make sure you're using your full email:
your-username@drklynx-mail.com - Check that your password is correct (case-sensitive)
- Try clearing cookies: Browser settings > Clear browsing data
"SMTP Auth Failed"
- Make sure you're using the full email address:
your-username@drklynx-mail.com - Use port 587 (not 465 or 25)
- Enable TLS
- Check your credentials in your credentials email
"Emails Being Marked as Spam"
Cloudflare's Microhost Mail includes DKIM signing, but some recipients' spam filters are aggressive. Ask them to:
- Mark your email as "Not Spam"
- Add you to their contacts
If this is a transactional email (password resets, order confirmations), use a service like SendGrid or Postmark for better deliverability.
"I Need More Storage"
Contact support@drklynx.com to upgrade your tier or request additional storage.
What to Read Next
- 07 — Attestation & Ledger Pulse — Verify your provisioning signature
- 08 — Troubleshooting — Common issues
Getting help: Email support@drklynx.com or check status.drklynx.com.