check email address is correct or not without sending email
-
hi all, i m working on the email validation i ve to check email id either it is correct or not but i cannt send mail on them. ie when i validate all email id client send newsletter and they should not bounce. thanx in advance
help as a alias. Be happy and make others happy.Cheer up........... My Personel webpage
-
hi all, i m working on the email validation i ve to check email id either it is correct or not but i cannt send mail on them. ie when i validate all email id client send newsletter and they should not bounce. thanx in advance
help as a alias. Be happy and make others happy.Cheer up........... My Personel webpage
You can use regular expressions to validate the supplied text is in a valid email format.
help as an alias wrote:
when i validate all email id client send newsletter and they should not bounce.
You are expecting too much. You won't know the mail bounces untill you send it.
All C# applications should call Application.Quit(); in the beginning to avoid any .NET problems.- Unclyclopedia How to use google | Ask smart questions
-
hi all, i m working on the email validation i ve to check email id either it is correct or not but i cannt send mail on them. ie when i validate all email id client send newsletter and they should not bounce. thanx in advance
help as a alias. Be happy and make others happy.Cheer up........... My Personel webpage
help as an alias wrote:
either it is correct or not but i cannt send mail on them. ie when i validate all email id client send newsletter and they should not bounce.
You won't know until you actually try to send the email whether or not it bounces. You can use regular expressions to see if the email is in a valid form or not.
"The clue train passed his station without stopping." - John Simmons / outlaw programmer "Real programmers just throw a bunch of 1s and 0s at the computer to see what sticks" - Pete O'Hanlon "Not only do you continue to babble nonsense, you can't even correctly remember the nonsense you babbled just minutes ago." - Rob Graham
-
help as an alias wrote:
either it is correct or not but i cannt send mail on them. ie when i validate all email id client send newsletter and they should not bounce.
You won't know until you actually try to send the email whether or not it bounces. You can use regular expressions to see if the email is in a valid form or not.
"The clue train passed his station without stopping." - John Simmons / outlaw programmer "Real programmers just throw a bunch of 1s and 0s at the computer to see what sticks" - Pete O'Hanlon "Not only do you continue to babble nonsense, you can't even correctly remember the nonsense you babbled just minutes ago." - Rob Graham
thanx, i alrey use this but i can to check it correct email id i m also checking domain is correct or not but not able to find the solution for email
help as a alias. Be happy and make others happy.Cheer up........... My Personel webpage
-
thanx, i alrey use this but i can to check it correct email id i m also checking domain is correct or not but not able to find the solution for email
help as a alias. Be happy and make others happy.Cheer up........... My Personel webpage
You don't find what you are asking for. Only way is to send email, get a confirmation by asking users to click on confirm email link.
All C# applications should call Application.Quit(); in the beginning to avoid any .NET problems.- Unclyclopedia How to use google | Ask smart questions
-
You don't find what you are asking for. Only way is to send email, get a confirmation by asking users to click on confirm email link.
All C# applications should call Application.Quit(); in the beginning to avoid any .NET problems.- Unclyclopedia How to use google | Ask smart questions
I second that. Sure there's regular expressions to check for any silly email addresses, but one has to actually try and send an email to see if it is indeed valid or not. The confirmation approach works well, too :)
"The clue train passed his station without stopping." - John Simmons / outlaw programmer "Real programmers just throw a bunch of 1s and 0s at the computer to see what sticks" - Pete O'Hanlon "Not only do you continue to babble nonsense, you can't even correctly remember the nonsense you babbled just minutes ago." - Rob Graham