Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am making an application in which whenever a user is registered it will get a notification mail and it works fine... Now what i want is if user doesn't want a notification mail it can be disable through the radio button and Here is my Users Controller

class UsersController < ApplicationController
# GET /users
# GET /users.json


def index
@users = User.all

respond_to do |format|
  format.html # index.html.erb
  format.json { render json: @users }
end
end

# GET /users/1
# GET /users/1.json
def show
@user = User.find(params[:id])

respond_to do |format|
  format.html # show.html.erb
  format.json { render json: @user }
end
end

# GET /users/new
# GET /users/new.json
def new
@user = User.new

respond_to do |format|
  format.html # new.html.erb
  format.json { render json: @user }
end
end

# GET /users/1/edit
def edit
@user = User.find(params[:id])
end

# POST /users
# POST /users.json
def create
@user = User.new(params[:user])

respond_to do |format|
  if @user.save
 if (@Notification=1) the   
     UserMailer.welcome_email(@user).deliver
  end

    format.html { redirect_to(@user, :notice => 'User was successfully created.') }
    format.json { render :json => @user, :status => :created, :location => @user }
  else
    format.html { render :action => "new" }
    format.json { render :json => @user.errors, :status => :unprocessable_entity }
  end
end
end

# PUT /users/1
# PUT /users/1.json
def update
@user = User.find(params[:id])

respond_to do |format|

if @user.destroy
UserMailer.welcome_email(@user).deliver

    format.html { redirect_to @user, notice: 'User was successfully updated.' }
    format.json { head :no_content }
  else
    format.html { render action: "edit" }
    format.json { render json: @user.errors, status: :unprocessable_entity }
  end
end
end

# DELETE /users/1
# DELETE /users/1.json
def destroy
@user = User.find(params[:id])
respond_to do |format|
if @user.destroy
# Tell the UserMailer to send a welcome Email after save
UserMailer.welcome_email(@user).deliver

    format.html { redirect_to(@user, :notice => 'User was successfully created.') }
    format.json { render :json => @user, :status => :created, :location => @user }
  else
    format.html { render :action => "new" }
    format.json { render :json => @user.errors, :status => :unprocessable_entity }
  end
end
end

end

and here is the _form.html.erb

<%= form_for(@user) do |f| %>
<% if @user.errors.any? %>
<div id="error_explanation">
  <h2><%= pluralize(@user.errors.count, "error") %> prohibited this user from being saved:</h2>

  <ul>
  <% @user.errors.full_messages.each do |msg| %>
    <li><%= msg %></li>
  <% end %>
  </ul>
</div>
<% end %>

<div class="field">
<%= f.label :name %><br />
<%= f.text_field :name %>
</div>
<div class="field">
<%= f.label :email %><br />
<%= f.text_field :email %>
</div>
<div class="field">
<%= f.label :login %><br />
<%= f.text_field :login %>
</div>

<%= f.radio_button(:Notification, "1") %>
<%= f.label(:Notification_1, "1") %>
<br />
<%= f.radio_button(:Notification, "0") %>
<%= f.label(:Notification_0, "0") %>
<div class="actions">

<%= f.submit %>
</div>
<% end %>

In the _form.html file 1 means True i.e. enable mail notification and 0 means false i.e. disable mail notification.

Now in this code the problem i am facing is that when user registered and click on any button true or false it will send a mail notification but What i want is when it click on the false button mail should not be send.

Can Anyone tell me where is the problem??

Thanks.

share|improve this question
possible duplicate of How to create the radio buttons for enable and disable? – Lichtamberg Nov 20 '12 at 12:47

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.