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

  1. Go to https://mail.drklynx-mail.com/webmail
  2. Enter your username and password
  3. 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:

  1. Go to your dashboard at app.drklynx.com/microhost/<customer_id>
  2. Add your custom domain
  3. Add DNS records (MX, TXT) as instructed
  4. Verify domain ownership
  5. Start using your-address@yourcompany.com

This feature is in development and will roll out by Day 30.

Changing Your Password

In webmail:

  1. Click Settings (gear icon)
  2. Click Accounts
  3. Click Security
  4. Enter your current password and new password
  5. Click Save

Forwarding Emails

In webmail, you can auto-forward incoming emails to another address:

  1. Click Settings > Forwarding
  2. Enter the email address to forward to
  3. Choose whether to keep a copy in Microhost Mail
  4. Click Enable

Vacation / Auto-Reply

In webmail:

  1. Click Settings > Vacation
  2. Enable "Vacation mode"
  3. Set start and end dates
  4. Write your auto-reply message
  5. 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:

  1. Mark your email as "Not Spam"
  2. 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


Getting help: Email support@drklynx.com or check status.drklynx.com.