Specify to and from

This commit is contained in:
2023-03-08 19:07:45 +11:00
parent cb18142734
commit 1853630102

View File

@@ -23,12 +23,15 @@ module Adamantium
} }
end end
Mail.deliver do mail = Mail.new do
to @to
from @username
subject name subject name
body content body content
end end
mail[:to] = @to
mail[:from] = @from
mail.deliver
end end
end end
end end