复选框在rails上发送电子邮件ruby

时间:2012-08-15 23:37:24

标签: ruby-on-rails-3 email

我的问题是我不知道用电子邮件创建用户列表,并且在同一个列表中有每个用户的复选框,然后最后有一个“发送”按钮并发送所有电子邮件对于已检查的用户,我解决了以下问题: 1)列表(索引视图)

<table>
<tr>
<th>Name</th>
<th>Email</th>
<th>Correo</th>
<th>Send Email</th>
<th></th>
<th></th>
<th></th>
 </tr>

<% var1 = []; i = 0 %>

<% @users.each do |user| %>
<tr id=<%= if user.value == 'No dispatched' 
         'c'
       elsif user.value == 'Dispatched'
         'a'
       else
         'b'
       end%> >
<td><%= user.name %></td>
<td><%= user.email %></td>
<td><%= user.value %></td>
<td><% var1[i] = user.name; i=i+1 %>
<%= button_to 'Activate/Desactivate', edit_send_path(user.id), :method => :get %>       </td>
</td>
<td><%= link_to 'Show', user %></td>
<td><%= link_to 'Edit', edit_user_path(user) %></td>
<td><%= link_to 'Destroy', user, :method => :delete, :data => { :confirm => 'Are you sure?' } %></td>
</tr>
<% end %>
</table>

<br />

<%= link_to 'New User', new_user_path %>


<%= button_to 'Send', {:controller => :Send, :action => :send}, :method => :get, :value => 2 %>

2)发送控制器

class SendController < ApplicationController



def send
  @users = User.all
  @users.each do |user|
    if user.value == 'In Process'
    UserMailer.registration_confirmation(user).deliver
    user.value = 'Dispatched'
    user.save
end
  end
  redirect_to :controller => :users, :protocol => 'http'
end

def edit
user = User.find(params[:id])
    if user.value == 'In process'
    user.value = 'No dispatched'
    user.save
elsif user.value == 'No dispatched'
    user.value = 'In process'
    user.save
end
  redirect_to :controller => :users, :protocol => 'http'
end

end

我正在使用标记'值'来检查电子邮件是否被发送

1 个答案:

答案 0 :(得分:1)

我为我的高级项目的一部分做了这个,这是我如何做到的:

对于每个用户,在do循环中添加一个链接到每个用户id的复选框,如下所示:

<td><%= check_box_tag ':multiple_users[]', user.id %></td>

在do循环下面添加一个submit_tag,看起来,请注意,该名称只是为了区分我们在选择用户时使用的不同操作:

<%= submit_tag "Email Selected Users", :name => "selected"  %>

在视图顶部的某处添加相应的表单标记,然后我会转到处理程序,但是你的“发送”操作,空哈希很重要:

<%= form_tag handle_checkbox_handler_path({}) do %>

生成邮件程序,我没有这样做,我不知道如何,我确定Google会这样做:)你还需要为邮件程序制作一个配置文件(再次谷歌这个,我帮不了你)。

拥有该邮件程序后,在其中创建一个操作以通过电子邮件发送给用户:

def email_user(email, subject, text_body)
  @text_body = text_body
  mail( :to => email, :subject => subject, :from => "monkey@feet.com")
end

完成操作后,请为电子邮件创建相应的视图(我的非常简单,只需输入@text_body值。

<%= @text_body %>

在你的发送动作中,将电子邮件发送给多个用户,这是我的代码,我不是Ruby专家,但它对我有用。它也不是很干净所以我会为你的可读性添加一些评论:

如果不是params [':multiple_users'] .nil? #有多个用户发送电子邮件

    # Split the passed string and loop through each ID in the string sending an email to each user listed
    params[':users'].split.each do |u|

      # Emailer is my mailer's name, :subject and :message I passed into the action as well. email_user is the name of my mailer action, defined above.
      Emailer.email_user(User.find(u.to_i).email, params[:subject], params[:message]).deliver
    end
      redirect_to users_path, :notice => "Message was sent successfully"

   else # there is only one user to email 
    if Emailer.email_user(params[:email], params[:subject], params[:message]).deliver # Try to send, if fails tell them so
      redirect_to users_path, :notice => "Message was sent successfully"
    else
      redirect_to users_path, :alert => "Message failed to send"
    end
  end
end

我希望这是可读的,至少可以为您提供一个起点。您还应该知道我之前提到的check_box_handler会进行一些检查以确保没有发生任何不良事件。