2013-02-05 13:16:51 -06:00
|
|
|
require 'mail'
|
2013-06-10 15:46:08 -05:00
|
|
|
require_dependency 'email/message_builder'
|
2013-06-10 14:33:37 -05:00
|
|
|
require_dependency 'email/renderer'
|
|
|
|
require_dependency 'email/sender'
|
|
|
|
require_dependency 'email/styles'
|
2013-04-14 19:20:33 -05:00
|
|
|
|
2013-02-05 13:16:51 -06:00
|
|
|
module Email
|
2013-02-25 10:42:20 -06:00
|
|
|
|
|
|
|
def self.is_valid?(email)
|
2015-05-26 23:12:10 -05:00
|
|
|
|
|
|
|
return false unless String === email
|
|
|
|
|
2015-09-23 00:24:30 -05:00
|
|
|
parsed = Mail::Address.new(email)
|
|
|
|
|
2013-02-25 10:42:20 -06:00
|
|
|
|
2013-02-05 13:16:51 -06:00
|
|
|
# Don't allow for a TLD by itself list (sam@localhost)
|
|
|
|
# The Grammar is: (local_part "@" domain) / local_part ... need to discard latter
|
2015-09-23 00:24:30 -05:00
|
|
|
parsed.address == email && parsed.local != parsed.address && parsed.domain && parsed.domain.split(".").length > 1
|
|
|
|
rescue Mail::Field::ParseError
|
|
|
|
false
|
2013-02-05 13:16:51 -06:00
|
|
|
end
|
|
|
|
|
2013-04-14 19:20:33 -05:00
|
|
|
def self.downcase(email)
|
|
|
|
return email unless Email.is_valid?(email)
|
2014-07-14 09:16:24 -05:00
|
|
|
email.downcase
|
2013-04-14 19:20:33 -05:00
|
|
|
end
|
|
|
|
|
2014-08-08 12:35:25 -05:00
|
|
|
def self.cleanup_alias(name)
|
|
|
|
# TODO: I'm sure there are more, but I can't find a list
|
2014-11-24 08:16:15 -06:00
|
|
|
name ? name.gsub(/[:<>,]/, '') : name
|
2014-08-08 12:35:25 -05:00
|
|
|
end
|
|
|
|
|
2013-02-05 13:16:51 -06:00
|
|
|
end
|