gmail

How to fetch Gmail contacts?

I have a scenario in my current application where I want to fetch the Gmail id's of my users. Could anyone tell me the way with piece of code in C#? Note: I am developing a web-base application in asp.net with C#. ...

error using c#mail.dll

I'm trying to read through a gmail account to get gps data that is being sent there ( in the text of a email) from an moble phone (my phone) using (Pop3Client cl = new Pop3Client()) { cl.UserName = "crash893"; cl.Password = "password"; cl.ServerName = "pop.gmail.com"; ...

how do I programmatically access "system folder" created by GMail Drive?

GMail Drive is an app that allows you to transparently back up files and folders on a gmail account. Visually it looks like a new drive created under My Computer called "GMail Drive". I can upload and download files to it manually, by drag-and-drop. Well, question is, how do I upload and download files to it programmatically? I have not...

GMail SMTP to send mail, receiving error (4.7.0), but mail is sent!

I am using GMail SMTP server to send mails. And PHPMailer as the mail sending script. I have received this error (I log all SMTP errors, that is whenever, PHPMailer::Send fails): - SMTP Error: Data not accepted.<p>SMTP server error: 4.7.0 Temporary System Problem. Try again later (WS) But the mails is actually sent. (This I know by ...

Finding incorrectly-formatted email addresses in a CSV file

I've got a CSV file full of contact information and I'm trying to load it into GMail contacts, but the e-mail addresses aren't all correctly formatted so GMail doesn't recognise it as an e-mail field. I can open the CSV file in Excel (Mac) but I don't know if there's a way of pattern matching in Excel. Also, some of the fields may contai...

Push email to a apache/php server

We've built a web service that needs to check constantly for email messages. Basically, an user sends us an email, and the server should make actions based on that email. We could use a crontab PHP script that checks for new messages every minute, with POP. But that's kind of offensive to the popserver and not very efficient (1min is too...

GMail SMTP via C# .Net errors on all ports

I've been trying for a whlie on this, and have so far been failing miserably. My most recent attempt was lifted from this stack code here: http://stackoverflow.com/questions/704636/sending-email-through-gmail-smtp-server-with-c, but I've tried all the syntax I could find here on stack and elsewhere. My code currently is: var client ...

Importing Contacts from GMail - Design Question

So, I am using Google Contacts API to let users import their contacts from GMail. I want the users to be able to select the contacts they want to import in my app, So currently I - GET a XML feed of all the contacts a user has. Parse it, and for each contact create a record in the imported_contacts table. Display the list to the user,...

Is there a secure way to connect to an IMAP server on behalf of a user?

I'm working on a web application which involves connecting to Gmail on behalf of a user to check for new messages. Is there a way to securely store the user's credentials so that they can still be recovered for the login, or is there some way to obtain a token for Gmail to use in connections? EDIT: The application is meant to be used mo...

Support for IMAP IDLE in PHP

I have read through all PHP documentation on IMAP functions (www.php.net/imap), but didn't find anything on issueing an IDLE command over an IMAP connection. I want to establish an IMAP connection between my server and GMail, and be notified instantly that a new message has arrived. It's kind of GMail PUSH to my server. The way mobile d...

Zend Mail Gmail SMTP

Hi I'm trying to send some emails via gmail from the Zend_Mail module. This is my code: $config = array( 'ssl' => 'tls', 'port' => 587, 'auth' => 'login', 'username' => '[email protected]', 'password' => 'password' ); $smtpConnection = new Zend_Mail_Transport_Smtp('smtp.gmail.com', $config); Error: Warning: ...

Importing gmail contacts on android emulator

I want to import contacts from my gmail account on android emulator in the same way you can do it on T-Mobile G1 phone. Is it possible? [I have this question too: pentium10] I am wondering if there is a way to do all this? ...

video plugin in chat

hi i m developing a social networking application using php and i want to make a chat application which supports video chat features like in Gmail ( google provides browser plugin for that ) thanks ...

Gmail,Yahoo, Facebook, Twitter contacts importer in PHP

Which is the greatest, cheapest application in PHP that I can buy to import Gmail, Yahoo, MSN, Facebook, Twitter contacts from my user's accounts if they wish to invite their friends? I have gone through: http://www.improsys.com/importer.htm http://www.octazen.com/demo.php and http://www.iplussoft.com/product/iplusinvite_pricing Octaz...

How to send an email from one Gmail account to another one using a batch file or script?

I need a tiny Windows script to send a 1 line email to Gmail accounts. I have tried many utilities that claim to do this such as BLAT, but none work. The script will be executed inside a batch file if certain conditions are met. Script can be in Perl, Python, VBScript, Java, it does not matter as long as it executes from a batch file. Pl...

Gmail Syntax Highlighter

Hi all, I sent my code to my friend over Gmail but as you guess, the code is not highlighted in Gmail. Is there solution to highlight code that is sent over Gmail? ...

getting gmail contacts, can't figure out what to set content length to

I'm trying to retrieve my contacts using curl. I've succeeded in getting my authToken, and now am getting an error stating that I need to set the content-length in the header, but when I set the content length to 0 I get a "bad request" error. Does anyone know what the content length is? Is it the length of the Auth key? or the length o...

has anyone succeeded in passing multiple params to the gmail contacts api?

The api (http://code.google.com/apis/gdata/docs/2.0/reference.html#Queries) states that I can pass multiple params to retrieve my contacts, a la... http://www.google.com/m8/feeds/contacts/foo%40gmail.com/full?max-results=500&amp;alt=json However, it appears to only pay attention to the first param and ignore any subsequent. I'm using CU...

Gmail Contact api

For my application I need to import the Gmail Address book, which I am able to do by following "Gmail Contact API". Recently Gmail added some of the new fields(i.e. Birthday,Website etc) which are not the part of xml. The gmail api docs mention that the new added field is part of XML namespace http://schemas.google.com/contact/2008, but...

Log in/out of Gmail chat programmatically, clicking Gmail's span "links"

At work, I use Gmail's chat, since it's encrypted and logs chats without installing or saving anything to the hard drive. At home, I use Pidgin. When I log into GMail at home, I have to log out of chat, or messages will end up in the wrong place. When I log into GMail at work, I have to log back in to chat. In other words, when I sta...