How to get available gmail/yahoo.mail account automatically by C#
-
Hi all, Currently, i want to develop a tool which can fill avaiable gmail/yahoo.mail account automatically Note: available gmail/yahoo.mail account is account that can be used for register. Thanks, ndkit
What? I'm sorry, but I've read your question several times and I still have no idea what you're trying to say here. What do you mean by filling available gmail/yahoo accounts automatically? Are you talking about a utility to automatically create email accounts?
Forgive your enemies - it messes with their heads
"Mind bleach! Send me mind bleach!" - Nagy Vilmos
My blog | My articles | MoXAML PowerToys | Mole 2010 - debugging made easier - my favourite utility
-
Hi all, Currently, i want to develop a tool which can fill avaiable gmail/yahoo.mail account automatically Note: available gmail/yahoo.mail account is account that can be used for register. Thanks, ndkit
ndkit wrote:
fill avaiable gmail/yahoo.mail account automatically
What exactly do you mean by this?
Unrequited desire is character building. OriginalGriff I'm sitting here giving you a standing ovation - Len Goodman
-
Hi all, Currently, i want to develop a tool which can fill avaiable gmail/yahoo.mail account automatically Note: available gmail/yahoo.mail account is account that can be used for register. Thanks, ndkit
To automate login, if that is what you are asking for, you could: - look at the page source (CTRL/U in most browsers); - see how a FORM is used with some INPUT fields and a SUBMIT button; - where pressing the button results in an HTML "POST". So you could create a Windows app (or a browser plug-in) that sends an HTML POST with the appropriate values. For the details, study the web pages they use, and use the HTML reference material. Warning: as Google/Yahoo/others maintain their web sites, they can change the details of the login process any way they see fit, so you will be aiming at a moving target... :)
Luc Pattyn [My Articles] Nil Volentibus Arduum
-
What? I'm sorry, but I've read your question several times and I still have no idea what you're trying to say here. What do you mean by filling available gmail/yahoo accounts automatically? Are you talking about a utility to automatically create email accounts?
Forgive your enemies - it messes with their heads
"Mind bleach! Send me mind bleach!" - Nagy Vilmos
My blog | My articles | MoXAML PowerToys | Mole 2010 - debugging made easier - my favourite utility
Sorry for my unclear meaning post content. I explain again as below: As you know, currently gmail or yahoo.mail service has many accounts. When someone want to create new account, the login name that he/she provides may be already used by others, so he/she must find another avaliable login name. So now, I want to develop a tool that support user to get available login name for solving this inconvenience. I googled and found the GmailAPI but seem that it doesn't solve for my case.
-
Sorry for my unclear meaning post content. I explain again as below: As you know, currently gmail or yahoo.mail service has many accounts. When someone want to create new account, the login name that he/she provides may be already used by others, so he/she must find another avaliable login name. So now, I want to develop a tool that support user to get available login name for solving this inconvenience. I googled and found the GmailAPI but seem that it doesn't solve for my case.
I do not believe that Gmail or any other email provider will give you a list of existing accounts - every spammer would love that!