I totally agree: https://davidcel.is/posts/stop-validating-email-addresses-with-regex/
validates :email, format: /@/i, allow_blank: true
I prefer this one:
validates :email, format: /.+@.+\..+/i, allow_blank: true
More then enough!
I totally agree: https://davidcel.is/posts/stop-validating-email-addresses-with-regex/
validates :email, format: /@/i, allow_blank: true
I prefer this one:
validates :email, format: /.+@.+\..+/i, allow_blank: true
More then enough!