Email returns a random email
()
| 149 | |
| 150 | // Email returns a random email |
| 151 | func Email() string { |
| 152 | return strings.ToLower(FirstName(RandomGender)+LastName()) + StringNumberExt(1, "", 3) + "@" + randomFrom(jsonData.Domains) |
| 153 | } |
| 154 | |
| 155 | // Country returns a random country, countryStyle decides what kind of format the returned country will have |
| 156 | func Country(countryStyle int64) string { |
searching dependent graphs…