mirror of
				https://github.com/disposable-email-domains/disposable-email-domains.git
				synced 2025-05-29 01:49:27 +08:00 
			
		
		
		
	README.md, add using example for ruby on rails
This commit is contained in:
		
							parent
							
								
									a864b0e485
								
							
						
					
					
						commit
						4c6825ae9b
					
				
							
								
								
									
										17
									
								
								README.md
									
									
									
									
									
								
							
							
						
						
									
										17
									
								
								README.md
									
									
									
									
									
								
							@ -32,6 +32,23 @@ function is_temp_mail($mail) {
 | 
			
		||||
    return in_array(explode('@', $mail)[1], $mail_domains_ko);
 | 
			
		||||
}
 | 
			
		||||
```
 | 
			
		||||
Ruby on Rails
 | 
			
		||||
 | 
			
		||||
In resource model, usually it is `user.rb`
 | 
			
		||||
```Ruby
 | 
			
		||||
before_validation :reject_email_blacklist
 | 
			
		||||
 | 
			
		||||
def reject_email_blacklist
 | 
			
		||||
  blacklist = File.read('config/disposable_email_blacklist.conf').split("\n")
 | 
			
		||||
 | 
			
		||||
  if blacklist.include?(email.split('@')[1])
 | 
			
		||||
    errors[:email] << 'invalid email'
 | 
			
		||||
    return false
 | 
			
		||||
  else
 | 
			
		||||
    return true
 | 
			
		||||
  end
 | 
			
		||||
end
 | 
			
		||||
```
 | 
			
		||||
 | 
			
		||||
Contributing
 | 
			
		||||
============
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user