· 8 years ago · Jun 16, 2018, 07:02 PM
1module RandomAdminEmail
2 def self.create
3 "me-#{lambda { rand(4) + 1 }.call }@gmail.com"
4 end
5end
6
7## in the environment smtp settings we would call...
8.
9:username => RandomAdminEmail.create
10.
11etc