We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ae1b451 + fd984e8 commit 4e009eeCopy full SHA for 4e009ee
guides/source/action_mailer_basics.md
@@ -309,7 +309,7 @@ email address in the format `"Full Name <email>"`.
309
```ruby
310
def welcome_email(user)
311
@user = user
312
- email_with_name = "#{@user.name} <#{@user.email}>"
+ email_with_name = %("#{@user.name}" <#{@user.email}>)
313
mail(to: email_with_name, subject: 'Welcome to My Awesome Site')
314
end
315
```
0 commit comments