Overview
To send emails from Omeka S running on Amazon Lightsail, it appears that email sending configuration is required. This article introduces how to use Amazon SES.
クラウド E メール送信サービス - Amazon Simple Email Service - AWS
Amazon Simple Email Service (SES) は、デベロッパーが任意のアプリケーションで E メールを送信できるようにする、費用対効果の高い、柔軟でスケーラブルな E メールサービスプロバイダーです。
The following forum discussion was helpful.

Configuring sendmail or SMTP for Omeka S on Amazon Lightsail
Hello everyone, I’m new here and have recently integrated Omeka S into our institution using an Amazon Lightsail LAMP instance. While I’ve had success with the installation, I’ve faced challenges setting up the Guest and Guest API modules due to its need for outbound email sending configurations for new user email confirmations. Despite attempts with sendmail and manual SMTP configurations in local.config.php, I haven’t been successful. Though, with sendmail installed, the website indicates the...
Amazon SES Configuration
Configure Amazon SES by referring to the following site.

Lightsailを作ってみる②~ Amazon SESの設定 - Qiita
はじめに 前回以下の記事でLightsailの構築をしましたが、今回はその作成したLightsail内のWordPressの管理画面からメールが送付したいというとこからになります。 WordPressにメールの送信設定をしないといけないとのことで、今回はWordPress...
Omeka S Configuration
Edit the Omeka S local.config.php file as follows.
<?php
return [
'logger' => [
// Log settings (as needed)
],
'mail' => [
'transport' => [
'type' => 'smtp', // Use SMTP
'options' => [
'name' => 'ses-smtp-user', // Any name
'host' => 'email-smtp.us-east-1.amazonaws.com', // SES SMTP server endpoint
'port' => 587, // Port supported by SES (e.g., 587)
'connection_class' => 'plain', // Authentication type
'connection_config' => [
'username' => 'your-ses-smtp-username', // SES SMTP username
'password' => 'your-ses-smtp-password', // SES SMTP password
'ssl' => 'tls', // SSL type ('tls' recommended)
'use_complete_quit' => true,
],
],
],
],
// Other settings...
];
- For
host, specify the Amazon SES SMTP server endpoint corresponding to the AWS region you are using. The example uses theus-east-1region endpoint, but change it as needed. - For
usernameandpassword, use the SMTP credentials generated in Amazon SES.
Summary
We hope this is helpful when using Omeka S with Amazon Lightsail.




Comments
…