Skip to content

Commit 2a9459d

Browse files
committed
Break down a long line
1 parent 2b38831 commit 2a9459d

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

lib/rodauth/rails/feature/email.rb

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,12 @@ module Email
1212

1313
# Create emails with ActionMailer which uses configured delivery method.
1414
def create_email_to(to, subject, body)
15-
Rodauth::Rails::Mailer.create_email(to: to, from: email_from, subject: "#{email_subject_prefix}#{subject}", body: body)
15+
Rodauth::Rails::Mailer.create_email(
16+
to: to,
17+
from: email_from,
18+
subject: "#{email_subject_prefix}#{subject}",
19+
body: body
20+
)
1621
end
1722

1823
# Delivers the given email.

0 commit comments

Comments
 (0)