-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Send welcome email after user confirms acount #282
Conversation
@@ -0,0 +1,6 @@ | |||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Style/FrozenStringLiteralComment: Missing magic comment # frozen_string_literal: true.
:bcc => 'rsmithlal@gmail.com' | ||
:from => 'draw.mcgill@gmail.com', | ||
:reply_to => 'draw.mcgill@gmail.com', | ||
:bcc => 'rob@bettertogethersolutions.com' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Style/HashSyntax: Use the new Ruby 1.9 hash syntax.
:reply_to => '[email protected]', | ||
:bcc => '[email protected]' | ||
:from => '[email protected]', | ||
:reply_to => '[email protected]', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Style/HashSyntax: Use the new Ruby 1.9 hash syntax.
:from => '[email protected]', | ||
:reply_to => '[email protected]', | ||
:bcc => '[email protected]' | ||
:from => '[email protected]', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Style/HashSyntax: Use the new Ruby 1.9 hash syntax.
Layout/SpaceAroundOperators: Operator => should be surrounded by a single space.
# Send Welcome Mail after confirmation | ||
UserMailer.welcome(self).deliver! | ||
end | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Layout/EmptyLinesAroundClassBody: Extra empty line detected at class body end.
@@ -0,0 +1,8 @@ | |||
|
|||
class UserMailer < ApplicationMailer |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Style/Documentation: Missing top-level class documentation comment.
@@ -0,0 +1,8 @@ | |||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Style/FrozenStringLiteralComment: Missing magic comment # frozen_string_literal: true.
Closing as this is a WIP that no one is working on and no known requirement |
Closes #279