在ruby中(在服务器端)验证电子邮件地址的最佳/简单方法是什么?
答案 0 :(得分:60)
您可以查看它是否与此Rails验证器中使用的正则表达式匹配:
validates_format_of :email,:with => /\A[^@\s]+@([^@\s]+\.)+[^@\s]+\z/
但如果您使用Devise,只需执行:
validates_format_of :email,:with => Devise::email_regexp
来源:http://lindsaar.net/2008/4/14/tip-4-detecting-a-valid-email-address
编辑1:
有用的测试网站:http://www.rubular.com/
答案 1 :(得分:8)
在Ruby中?与任何语言一样。
向地址发送一封确认电子邮件,其中包含收件人必须点击的链接,然后才能将该电子邮件地址视为完全有效。
完全格式化的地址可能仍然无效的原因有多种原因(该地址没有实际用户,垃圾邮件过滤器阻止等等)。确切知道的唯一方法是成功完成某些描述的端到端交易。
答案 2 :(得分:6)
validates :email, presence: true, format: /\w+@\w+\.{1}[a-zA-Z]{2,}/
检查电子邮件字段是否为空并且一个或多个字符都位于“@”之前并跟随它
在@
之前添加特异性,任意一个或多个单词字符,并且在具体的1 .
和至少2个字母之后和之间添加任意一个或多个单词字符
答案 3 :(得分:4)
您可以使用
<%=email_field_tag 'to[]','' ,:placeholder=>"Type an email address",:pattern=>"^([\w+-.%]+@[\w-.]+\.[A-Za-z]{2,4},*[\W]*)+$",:multiple => true%>
答案 4 :(得分:4)
我知道这是一个老问题,但我正在寻找一种简单的方法来做到这一点。我遇到了email_validator gem这个设置和使用非常简单。
作为验证者
validates :my_email_attribute, :email => true
模型外的验证
EmailValidator.valid?('narf@example.com') # boolean
我希望这对大家有所帮助。
Happy Codding
答案 5 :(得分:3)
快捷方式:
validates :email, :format => /@/
普通表格(正则表达式):
validates :email, :format => { :with => /\A([^@\s]+)@((?:[-a-z0-9]+\.)+[a-z]{2,})\Z/ }
答案 6 :(得分:3)
由于主答案的博客网站已关闭,以下是该网站通过nice cacher或gist提供的代码片段:
# http://my.rails-royce.org/2010/07/21/email-validation-in-ruby-on-rails-without-regexp/
class EmailValidator < ActiveModel::EachValidator
# Domain must be present and have two or more parts.
def validate_each(record, attribute, value)
address = Mail::Address.new value
record.errors[attribute] << (options[:message] || 'is invalid') unless (address.address == value && address.domain && address.__send__(:tree).domain.dot_atom_text.elements.size > 1 rescue false)
end
end
答案 7 :(得分:3)
您可以参考https://apidock.com/rails/ActiveModel/Validations/HelperMethods/validates_format_of
validates_format_of :email, with: /\A([^@\s]+)@((?:[-a-z0-9]+\.)+[a-z]{2,})\z/i
答案 8 :(得分:2)
发送确认邮件,我通常会使用此验证器...... D.R.Y。
# lib/email_validator.rb
class EmailValidator < ActiveModel::EachValidator
EmailAddress = begin
qtext = '[^\\x0d\\x22\\x5c\\x80-\\xff]'
dtext = '[^\\x0d\\x5b-\\x5d\\x80-\\xff]'
atom = '[^\\x00-\\x20\\x22\\x28\\x29\\x2c\\x2e\\x3a-' +
'\\x3c\\x3e\\x40\\x5b-\\x5d\\x7f-\\xff]+'
quoted_pair = '\\x5c[\\x00-\\x7f]'
domain_literal = "\\x5b(?:#{dtext}|#{quoted_pair})*\\x5d"
quoted_string = "\\x22(?:#{qtext}|#{quoted_pair})*\\x22"
domain_ref = atom
sub_domain = "(?:#{domain_ref}|#{domain_literal})"
word = "(?:#{atom}|#{quoted_string})"
domain = "#{sub_domain}(?:\\x2e#{sub_domain})*"
local_part = "#{word}(?:\\x2e#{word})*"
addr_spec = "#{local_part}\\x40#{domain}"
pattern = /\A#{addr_spec}\z/
end
def validate_each(record, attribute, value)
unless value =~ EmailAddress
record.errors[attribute] << (options[:message] || "is not valid")
end
end
end
在您的模型中
validates :email , :email => true
或
validates :email, :presence => true,
:length => {:minimum => 3, :maximum => 254},
:uniqueness => true,
:email => true
答案 9 :(得分:1)
如果您使用的是Rails / Devise-除了@apneadiving的答案-
validates_format_of :email,:with => Devise::email_regexp
Devise :: email_regexp来自config / initializers / devise.rb
config.email_regexp = /\A[^@\s]+@([^@\s]+\.)+[^@\s]+\z/