Amazon SES Email Integration

Our company is engaged in the development, support and maintenance of sites of any complexity. From simple one-page sites to large-scale cluster systems built on micro services. Experience of developers is confirmed by certificates from vendors.
Development and maintenance of all types of websites:
Informational websites or web applications
Business card websites, landing pages, corporate websites, online catalogs, quizzes, promo websites, blogs, news resources, informational portals, forums, aggregators
E-commerce websites or web applications
Online stores, B2B portals, marketplaces, online exchanges, cashback websites, exchanges, dropshipping platforms, product parsers
Business process management web applications
CRM systems, ERP systems, corporate portals, production management systems, information parsers
Electronic service websites or web applications
Classified ads platforms, online schools, online cinemas, website builders, portals for electronic services, video hosting platforms, thematic portals

These are just some of the technical types of websites we work with, and each of them can have its own specific features and functionality, as well as be customized to meet the specific needs and goals of the client.

Our competencies:
Development stages
Latest works
  • image_web-applications_feedme_466_0.webp
    Development of a web application for FEEDME
    1161
  • image_ecommerce_furnoro_435_0.webp
    Development of an online store for the company FURNORO
    1041
  • image_crm_enviok_479_0.webp
    Development of a web application for Enviok
    822
  • image_crm_chasseurs_493_0.webp
    CRM development for Chasseurs
    847
  • image_website-sbh_0.png
    Website development for SBH Partners
    999
  • image_website-_0.png
    Website development for Red Pear
    451

Email Newsletter Integration (Amazon SES)

Amazon SES (Simple Email Service) is one of the cheapest options for sending high volumes of email. Cost: $0.10 per 1000 emails when sending via EC2, $0.10 per 1000 for external sending. Requires more initial setup than ready-made ESPs.

Domain Verification

Before sending, verify your domain via DNS records (DKIM, DMARC). In AWS Console: SES → Verified identities → Create identity → Domain. AWS generates CNAME records to add to DNS.

Sandbox Graduation

By default, SES works in sandbox mode: you can only send to verified emails. For production, request sandbox graduation via AWS Console (usually approved within 24–48 hours).

Sending via AWS SDK

// composer require aws/aws-sdk-php

$ses = new \Aws\Ses\SesClient([
    'region'      => 'eu-west-1',
    'credentials' => [
        'key'    => env('AWS_ACCESS_KEY_ID'),
        'secret' => env('AWS_SECRET_ACCESS_KEY')
    ]
]);

$ses->sendEmail([
    'Source'      => '[email protected]',
    'Destination' => ['ToAddresses' => [$to]],
    'Message'     => [
        'Subject' => ['Data' => "Order #{$orderId} Confirmed", 'Charset' => 'UTF-8'],
        'Body'    => [
            'Html' => ['Data' => $htmlBody, 'Charset' => 'UTF-8'],
            'Text' => ['Data' => $textBody, 'Charset' => 'UTF-8']
        ]
    ],
    'ConfigurationSetName' => 'production-tracking'  // for event tracking
]);

Laravel SES Driver

MAIL_MAILER=ses
AWS_DEFAULT_REGION=eu-west-1
AWS_ACCESS_KEY_ID=AKIA...
AWS_SECRET_ACCESS_KEY=...
// config/services.php
'ses' => [
    'key'    => env('AWS_ACCESS_KEY_ID'),
    'secret' => env('AWS_SECRET_ACCESS_KEY'),
    'region' => env('AWS_DEFAULT_REGION', 'us-east-1'),
    'options' => [
        'ConfigurationSetName' => 'production-tracking',
        'Tags' => [['Name' => 'Environment', 'Value' => 'production']]
    ],
],

Configuration Sets and SNS Notifications

Configuration Sets allow receiving delivery events via Amazon SNS (Simple Notification Service) → Lambda or HTTP endpoint:

  • send, delivery, bounce, complaint, open, click
  • Bounce and Complaint are critical: immediately unsubscribe complainants

SES Suppression List

AWS automatically blocks resending to addresses with hard bounce or complaints. Before sending, check address via API to avoid wasting quota.

Integration timeline: 1 business day (+ 24–48 hours for domain verification and sandbox graduation).