2013-02-05 14:16:51 -05:00
|
|
|
require 'mail'
|
2013-06-10 16:46:08 -04:00
|
|
|
require_dependency 'email/message_builder'
|
2013-06-10 15:33:37 -04:00
|
|
|
require_dependency 'email/renderer'
|
|
|
|
require_dependency 'email/sender'
|
|
|
|
require_dependency 'email/styles'
|
2013-04-14 20:20:33 -04:00
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
module Email
|
2013-02-25 11:42:20 -05:00
|
|
|
|
|
|
|
def self.is_valid?(email)
|
2015-05-27 00:12:10 -04:00
|
|
|
|
|
|
|
return false unless String === email
|
|
|
|
|
2015-09-23 01:24:30 -04:00
|
|
|
parsed = Mail::Address.new(email)
|
|
|
|
|
2013-02-25 11:42:20 -05:00
|
|
|
|
2013-02-05 14:16:51 -05: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 01:24:30 -04:00
|
|
|
parsed.address == email && parsed.local != parsed.address && parsed.domain && parsed.domain.split(".").length > 1
|
|
|
|
rescue Mail::Field::ParseError
|
|
|
|
false
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
2013-04-14 20:20:33 -04:00
|
|
|
def self.downcase(email)
|
|
|
|
return email unless Email.is_valid?(email)
|
2014-07-14 10:16:24 -04:00
|
|
|
email.downcase
|
2013-04-14 20:20:33 -04:00
|
|
|
end
|
|
|
|
|
2014-08-08 13:35:25 -04:00
|
|
|
def self.cleanup_alias(name)
|
|
|
|
# TODO: I'm sure there are more, but I can't find a list
|
2014-11-24 09:16:15 -05:00
|
|
|
name ? name.gsub(/[:<>,]/, '') : name
|
2014-08-08 13:35:25 -04:00
|
|
|
end
|
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|