Skip to main content

Mail notifications in OpenCloud

This guide shows how to configure your OpenCloud instance to send notification E-Mails by modifying the .env file in your OpenCloud setup.


🛠️ Step 1: Open the .env File

Edit the file with your preferred text editor:

nano .env

Or use vim, code, or gedit as you prefer.


📝 Step 2: Add or Modify These Environment Variables

Adjust the following lines in your .env file according to your SMTP provider and requirements.
Note: SMTP_TRANSPORT_ENCRYPTION and SMTP_INSECURE may vary depending on your setup.

SMTP Settings:

SMTP_HOST=YOUR_SMTP_HOST
SMTP_PORT=1025
SMTP_SENDER=noreply@your.text
SMTP_USERNAME=YOUR_USERNAME
SMTP_PASSWORD=YOUR_PASSWORD
SMTP_TRANSPORT_ENCRYPTION=none
SMTP_INSECURE=true

⚠️ In the .env file, values should be written without quotation marks. Do not use 'single quotes' or "double quotes" — just enter the plain value.


💾 Step 3: Save and Exit

For nano, press Ctrl + O to save and Ctrl + X to exit.


🔄 Step 4: Restart OpenCloud

Apply the changes by restarting the OpenCloud services:

docker compose down 
docker compose up -d

OpenCloud is now successfully configured to deliver notification emails, including those triggered by actions such as file sharing.