blob: 656f4f11d90f9034835fa3e3c50d7da14accc553 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# Learn about sending emails
# https://luckyframework.org/guides/emails/sending-emails-with-carbon
abstract class BaseEmail < Carbon::Email
# You can add defaults using the 'inherited' hook
#
# Example:
#
# macro inherited
# from default_from
# end
#
# def default_from
# Carbon::Address.new("support@app.com")
# end
end
|