مراية لـ
https://github.com/postalserver/postal.git
تم المزامنة 2025-11-30 21:32:30 +00:00
12 أسطر
293 B
Ruby
12 أسطر
293 B
Ruby
# frozen_string_literal: true
|
|
|
|
require "postal/config"
|
|
|
|
ActionMailer::Base.delivery_method = :smtp
|
|
ActionMailer::Base.smtp_settings = {
|
|
address: Postal::Config.smtp.host,
|
|
user_name: Postal::Config.smtp.username,
|
|
password: Postal::Config.smtp.password,
|
|
port: Postal::Config.smtp.port
|
|
}
|