When I click on the link in my confirmation email that devise sends, it seems to go to a path that is not recognized by my application.

The url looks something like this:

http://glowing-flower-855.heroku.com/users/confirmation?confirmation_token=lIUuOINyxfTW3TBPPI

which looks correct, but it seems to go to my 500.html file.

It has something to do with this code in my user model that overrides Devise's confirm! method:

def confirm!
  UserMailer.welcome_message(self).deliver
  super
end 

According to my logs, this is the error:

2011-06-10T03:48:11+00:00 app[web.1]: ArgumentError (A sender (Return-Path, Sender or From) required to send a message): 
2011-06-10T03:48:11+00:00 app[web.1]: app/models/user.rb:52:in `confirm!'

which points to this line: UserMailer.welcome_message(self).deliver

Here's my user mailer class:

class UserMailer < ActionMailer::Base
  def welcome_message(user)
    @user = user
    mail(:to => user.email, :subject => "Welcome to DreamStill")
  end
end
link|improve this question

What's in your logs, regarding the errors? – Karpie Jun 10 '11 at 3:56
2011-06-10T03:48:11+00:00 app[web.1]: ArgumentError (A sender (Return-Path, Sender or From) required to send a message): 2011-06-10T03:48:11+00:00 app[web.1]: app/models/user.rb:52:in `confirm!' – Justin Meltzer Jun 10 '11 at 4:00
it's pointing to this line UserMailer.welcome_message(self).deliver – Justin Meltzer Jun 10 '11 at 4:00
Can you show us your mailer class? Also, are you using Rails 3? – benoror Jun 10 '11 at 4:21
posted my mailer class. yeah, Rails 3 – Justin Meltzer Jun 10 '11 at 4:24
feedback

1 Answer

up vote 4 down vote accepted

You are missing the "from:" value, it's a must for SMTP handling:

class UserMailer < ActionMailer::Base
  # Option 1
  #default_from "bob@dylan.com"

  def welcome_message(user)
    @user = user
    mail(
      # Option 2
      :from => "paul@mccarthy.com",
      :to => user.email, 
      :subject => "Welcome to DreamStill"
    )
  end
end
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.