Skip to main content

SMTP Configuration

Configure your own SMTP server to send emails from your domain.

Default SMTP

Optional Configuration

By default, Glambot Studio uses its own SMTP server. Configuring a custom SMTP is optional and recommended only if you want to:

  • Send from your own domain (@your-company.com)
  • Have full control over deliverability
  • Manage your own sending limits

Why Configure Your SMTP?

AdvantageDescription
Custom DomainSend from your own email address
Better DeliverabilityDKIM/SPF configuration to avoid spam
Full ControlManage your quotas and sending limits
TraceabilityTrack sends from your SMTP provider

Access Configuration

SMTP configuration is done at the Organization level:

  1. Click on your name in the top right
  2. Select "Organizations"
  3. Navigate to the "SMTP Settings" section

Create an SMTP Configuration

Required Information

FieldDescriptionExample
NameConfiguration identifier"Gmail Pro"
SMTP ServerServer addresssmtp.gmail.com
PortConnection port587
UsernameLogin identifieryour-email@domain.com
PasswordPassword or application key***
TLSConnection securityEnabled
Sender EmailSending addressnoreply@your-domain.com

Procedure

  1. In organization settings, "SMTP" section
  2. Click "Add SMTP Configuration"
  3. Fill in the information
  4. Click "Save"
  5. Test the configuration

Common Configurations

Gmail / Google Workspace

Server: smtp.gmail.com
Port: 587 (TLS) or 465 (SSL)
Authentication: Required
TLS: Enabled
Application Password

For Gmail, you must create an "application password" in Google security settings. Do not use your regular password.

Google Guide: Create an Application Password

Outlook / Office 365

Server: smtp.office365.com
Port: 587
TLS: Enabled
Authentication: Required

SendGrid

Server: smtp.sendgrid.net
Port: 587
Username: apikey
Password: your-sendgrid-api-key

Mailgun

Server: smtp.mailgun.org
Port: 587
Username: postmaster@your-domain.mailgun.org
Password: your-mailgun-password

Amazon SES

Server: email-smtp.{region}.amazonaws.com
Port: 587
Username: your-access-key
Password: your-secret-key

Understanding DKIM and SPF

Email authentication is crucial for ensuring your emails reach recipients' inboxes rather than spam folders.

What is SPF (Sender Policy Framework)?

SPF is a DNS record that specifies which mail servers are authorized to send emails on behalf of your domain.

How it works:

  1. You publish an SPF record in your domain's DNS
  2. When an email is received, the recipient's mail server checks the SPF record
  3. If the sending server is listed in the SPF record, the email passes authentication
  4. If not, the email may be marked as spam or rejected

Example SPF record:

v=spf1 include:_spf.glambot-studio.app ~all

This means: "Emails from my domain can be sent by servers specified in _spf.glambot-studio.app"

What is DKIM (DomainKeys Identified Mail)?

DKIM adds a digital signature to your emails that proves they were sent by your domain and haven't been tampered with.

How it works:

  1. Your mail server signs outgoing emails with a private key
  2. You publish the corresponding public key in your DNS
  3. Recipient servers verify the signature using your public key
  4. If the signature is valid, the email is authenticated

Benefits:

  • Proves email authenticity
  • Prevents email tampering
  • Improves sender reputation
  • Reduces spam false positives

Why You Need Both

AuthenticationPurposeProtects Against
SPFVerifies sender serverUnauthorized servers sending as your domain
DKIMVerifies message integrityEmail content modification in transit
CombinedMaximum deliverabilitySpam filters, phishing, spoofing
Best Practice

Always configure both SPF and DKIM for optimal email deliverability. Major email providers (Gmail, Outlook, Yahoo) strongly recommend both.

Configure DKIM and SPF

To improve your email deliverability, configure DKIM and SPF.

Automatic DKIM Generation

Glambot Studio can automatically generate your DKIM records:

  1. In SMTP configuration, "DKIM" section
  2. Click "Generate DKIM Records"
  3. Copy the generated DNS records

DNS Records to Add

Add these records to your DNS hosting provider:

DKIM Record:

Type: TXT
Name: glambot._domainkey
Value: v=DKIM1; k=rsa; p=[generated public key]

SPF Record:

Type: TXT
Name: @
Value: v=spf1 include:_spf.glambot-studio.app ~all
Integrated Generator

Glambot Studio provides an integrated generator to automatically create your DKIM and SPF records.

Verification

After adding DNS records (propagation delay: 24-48 hours):

  1. Return to SMTP configuration
  2. Click "Verify DKIM/SPF"
  3. The system automatically validates your records

Test Configuration

Before using your configuration in production:

  1. Click "Test Configuration"
  2. Enter a test email address
  3. Verify receipt of the test email
  4. Check that it doesn't arrive in spam

Troubleshooting

Unable to Connect to SMTP Server

Verify:

  1. Server address and port are correct
  2. Username and password are valid
  3. TLS is enabled if required by the server
  4. Your provider allows SMTP connections

Emails Sent But Not Received

Verify:

  1. Email is not in spam folder
  2. Sender address is authorized by your provider
  3. DKIM/SPF records are correctly configured

Emails Going to Spam

Common causes:

  1. DKIM/SPF not configured or invalid
  2. Sender domain not verified
  3. Content triggering spam filters
  4. Low domain reputation

Solutions:

  1. Configure DKIM and SPF
  2. Use mail-tester.com to diagnose
  3. Avoid spam trigger words
  4. "Warm up" your domain with gradual volume increases

DKIM/SPF Verification Failed

  1. Wait 24-48h for DNS propagation
  2. Verify with MXToolbox
  3. Ensure you copied records exactly (no extra spaces)
  4. Contact your DNS hosting provider if the problem persists

Best Practices

Security

  • Use application passwords, not your main passwords
  • Always enable TLS for encryption
  • Limit access to SMTP configurations

Deliverability

  • Configure DKIM and SPF from the start
  • Test regularly with mail-tester.com
  • Monitor bounce rates
  • Maintain a good sender reputation

Management

  • Clearly name your SMTP configurations
  • Document access and configurations
  • Have a backup configuration

Next Steps