Tagged Questions
Use this tag for programming questions related to Gmail API's
92
votes
8answers
47k views
Sending email in .NET through Gmail
Instead of relying on my host to send email, I was thinking of sending the messages though my Gmail account. The emails are personalized emails to the bands I play on my show. Is it possible to do?
77
votes
11answers
19k views
Google's Imageless Buttons
There have been a few articles recently about Google's new imageless buttons:
http://stopdesign.com/archive/2009/02/04/recreating-the-button.html
http://stopdesign.com/eg/buttons/3.0/code.html
...
69
votes
10answers
48k views
How do you send email from a Java app using Gmail?
Is it possible to send an email from my Java application using a Gmail account? I have it configured to send using my company mail server, but that's not going to cut it when I distribute the ...
60
votes
9answers
104k views
Send email using GMail SMTP server from PHP page
I am trying to send an email via GMail's SMTP server from a PHP page but I get this error:
authentication failure [SMTP: SMTP server does no support authentication (code: 250, response: ...
35
votes
10answers
18k views
How can I download all emails with attachments from Gmail?
How do I connect to Gmail and determine which messages have attachments? I then want to download each attachment, printing out the Subject: and From: for each message as I process it.
I never found ...
31
votes
3answers
6k views
How is GMail Chat able to make AJAX requests without client interaction?
All HTTP responses require the client to initiate them, even those made using AJAX. But GMail's chat feature is able to receive messages from other users, even when I'm just sitting in my comfy ...
25
votes
9answers
33k views
Getting mail from GMail into Java application using IMAP
I want to access messages in GMail from a Java application using JavaMail and IMAP. Why am I getting a SocketTimeoutException?
Here is my code:
Properties props = System.getProperties();
...
18
votes
2answers
221 views
Using PHP, How to search through Gmail's archived emails
(First time programming in PHP. Had some help. Need a bit more.)
Goal:
Pull the lastContactDate from a given email address from my gmail account. Hoping to answer the question, "When was the last ...
18
votes
4answers
6k views
What is “shva” in Gmail's URL?
What is the following portion of a Gmail URL for?
https://mail.google.com/mail/?**zx**=1efobg68r40co&**shva**=1#inbox
If you change it, nothing happens!!
I know Gmail is not an Open-Source ...
16
votes
3answers
3k views
How do I enable push-notification for IMAP (Gmail) using Python imaplib?
Is there a way to monitor a gmail account using imaplib without polling gmail each time I want to see if there is new mail. Or in other words, I just want the script to be notified of a new message so ...
15
votes
6answers
15k views
c# SmtpClient class not able to send email using gmail
I'm having trouble sending email using my gmail account. Im pulling my hair out.
The same settings work fine in Thunderbird.
Here's the code. I've also tried port 465 with no luck.
SmtpClient ss = ...
15
votes
7answers
6k views
Check unread count of Gmail messages with Python
How can I check the number of unread Gmail message in my inbox with a short Python script? Bonus points for retrieving the password from a file.
15
votes
6answers
8k views
15
votes
5answers
16k views
PHP APIs for Hotmail, Gmail and Yahoo?
I am a PHP developer who is kind of in a pickle. I'm trying to locate and/or build an API capable of speaking to Hotmail, Yahoo and GMAIL in order to retrieve contact lists (with the user's consent, ...
14
votes
3answers
960 views
What is the advantage of Gmail's client side web architecture?
I was just wondering what is the advantage of client side architecture GMail is following.
I mean what is the advantage of multiple iframes on the page; one with html layout and second with all the ...
14
votes
10answers
8k views
How can I get Gmail-like file uploads for my web app?
I want to add gmail-like file upload functionality for one of my projects. Can anybody help me with this?
My application is built in vb.net.
I would appreciate any kind of help or guidance.
Thanks
...
13
votes
8answers
2k views
Find Gmail url-IDs via IMAP
One of my favourite features of Gmail is the ability to bookmark urls to certain messages like this:
https://mail.google.com/mail/#all/124c8f386d41fd3a
What I would like to do is write a script that ...
13
votes
2answers
1k views
How Gmail makes IE Back work without refresh?
Gmail uses # when you click on a mail to distinguish the page (+ Ajax action).
http://mail.google.com/mail/#inbox/1238e709e37a1394
I found:
...
13
votes
8answers
10k views
Send mail via gmail with PowerShell V2's Send-MailMessage
I'm trying to figure out how to use PowerShell V2's Send-MailMessage with gmail.
Here's what I have so far.
$ss = new-object Security.SecureString
foreach ($ch in "password".ToCharArray())
{
...
12
votes
4answers
7k views
How can I shift-select multiple checkboxes like GMail?
In GMail, the user can click on one checkbox in the email list, hold down the Shift key, and select a second checkbox. The JavaScript will then select/unselect the checkboxes that are between the two ...
12
votes
4answers
904 views
What's the best way to implement gmail style “undo” in Rails?
I think it important to have an "undo" method ala gmail when destroying records instead of displaying an annoying popup that says, "Are you sure?".
The way that I've implemented this is to have a ...
11
votes
10answers
561 views
Sending email without hard-coding username and password
Is there any way of sending an email from C# without manually coding my user name and password using Gmail SMTP?
I know that there is some software that can see the source code, and I don't really ...
11
votes
2answers
670 views
Email Tracking - GMail
I am creating my own email tracking system for email marketing tracking. I have been able to determine each persons email client they are using by using the http referrer but for some reason GMAIL ...
11
votes
3answers
3k views
Gmail plugin API/development
I'd love to write a plugin to monitor my Spam folder in Gmail, and perform various functions (like delete anything with the word Pfizer in it!). I have a bunch of other ideas too for our Google Apps ...
10
votes
3answers
2k views
Can I use OpenID delegation with a standard Google account?
I'm currently using ClaimID and have the following data on my website to allow delegation:
<link rel="openid.server" href="http://openid.claimid.com/server" />
<link rel="openid.delegate" ...
10
votes
6answers
44k views
How to configure WAMP (localhost) to send email using Gmail?
I want to use the mail() function from my localhost. I have WAMP installed and a Gmail account. I know that the SMTP for Gmail is smtp.gmail.com and the port is 465 (more info from gmail).
What I need ...
10
votes
5answers
3k views
How to stop Gmail from marking mails sent by my web app as spam?
I have a simple web application that provides daily financial data. Users subscribe, and we send them an email every day. However, Gmail is marking all of our emails as spam. What should we be looking ...
9
votes
2answers
762 views
How do I use connect to Gmail's IMAP server using oauth in Rails3?
I found the gmail_xoauth gem, which does most of what I need, but I also need to generate the oauth tokens (consumer_key and consumer_secret) from inside Rails3.
I am trying to integrate Gmail's ...
9
votes
4answers
972 views
How does Gmail do comet on Opera?
I would like to know how Gmail (or anyone else) does comet on Opera.
Here is what I know so far from my experiments.
It doesn't use the event-source tag which is broken in Opera 10.51.
It doesn't ...
9
votes
1answer
2k views
How does GMail implement Comet?
With the help of HttpWatch, I tried to figure out how GMail implements Comet.
I login in to GMail with two accounts, one in IE and the other in Firefox. Chatting in GTalk in GMail with some magic ...
8
votes
1answer
185 views
Intent filter to download attachment from gmail apps on Android
I have android application with intent filter (ACTION_VIEW) to open file and import it into my application. I wish to download file attachment from gmail app into my application. Some of file type ...
8
votes
5answers
179 views
Why do Facebook, Twitter and GMail render all their data to the browser as JSON as opposed to HTML?
If you login to Facebook, Twitter or Gmail and view source, you'll notice something very peculiar. All your Tweets and mail are rendered as JSON. There are not angle brackets. My guess is, this data ...
8
votes
3answers
287 views
PHP - Gmail-like Email Content Separation
I am building a ticket system, but I don't want to put one of those messages
************************* REPLY ABOVE THIS LINE ***********************
Gmail tends to do a pretty good idea with their ...
8
votes
2answers
16k views
Using Javamail to connect to Gmail smtp server ignores specified port and tries to use 25
I'm trying to use javamail in a groovy script to send out an email via gmail. I've looked many places online and have been unable to get it working thus far. The error I'm getting when running my ...
8
votes
3answers
372 views
How can the page know I'm analyzing it with firebug
Look
Wow!
How can the webpage know I'm using firebug?
BTW I couldn't find out how to show the translucent add banner.
8
votes
4answers
6k views
Connecting to Gmail through IMAP with PHP - SSL context failed
I'm trying to connect to Gmail through IMAP with PHP running in Apache. This is on an Ubuntu 9.04 system. I've got some sort of PHP configuration issue that is keeping this from working. First, ...
8
votes
7answers
5k views
How can I avoid the “This page contains both secure and non secure items” warning in my browser?
We are thinking to SSL enabled part of our website, but some page contains ads from third party vendor (like Google AdSense).
I'd think this will create a annoying problem for our users since they ...
7
votes
1answer
600 views
How to get focus to a Chrome tab which created desktop notification?
I would like to implement same functionality as Gmail has nowadays. When new email arrives or new chat comes, notification popup appears and if you click it, the tab with Gmail gets focussed.
I have ...
7
votes
2answers
1k views
How does Gmail handle back/forward in rich JavaScript?
Gmail seems to have some clever way of handling the back/forward buttons in a rich JS application.
In my organisation we trialled the jQuery history plugin. The plugin basically runs a function every ...
7
votes
2answers
827 views
Can HTML 5 drag-and-drop handle folders?
I'm impressed by Gmail's ability to let you drag files into emails for attachments, but when I try to drag a folder onto it, it says the file has 0 bytes. Is this a Gmail limitation, or is this ...
7
votes
3answers
400 views
Detecting if a browser's cache is full
We've identified that full browser caches are the cause of a problem on our extranet. It only affects a small number of our users, but we'd like to alert them to the problem and give them some ...
7
votes
2answers
244 views
How Google detects that you are having Slow Connection in Gmail?
do you have any idea about the logic behind the slow connection in gmail?
7
votes
3answers
626 views
Gmail seems to capture all keyboard events. Any way to go around that?
I'm writing a Chrome extension that launches a script with a keyboard shortcut. It works fine on most pages but I realized that on Gmail it doesn't: it seems that all keyboard events are captured by ...
7
votes
6answers
4k views
PHP Mass Email Best Practices? (PHPMailer + Gmail)
I'm thinking about how to handle sending large amounts of email from my web applications, and whether there are any best practices for doing so. StackOverflow is already labeling this as 'subjective', ...
7
votes
5answers
5k views
How do i implement ‘sign in with google’ on my site?
On my site i would like to sign in with a google account. I plan to use openid but i would like to see signing in with google has more benefits. I notice in the past a few sites has the ability to ...
7
votes
4answers
2k views
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 ...
7
votes
3answers
7k views
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 ...
7
votes
5answers
8k views
smtplib and gmail - python script problems
Here's my script:
#!/usr/bin/python
import smtplib
msg = 'Hello world.'
server = smtplib.SMTP('smtp.gmail.com',587) #port 465 or 587
server.ehlo()
server.starttls()
server.ehlo()
...
7
votes
2answers
930 views
Design patterns used in Gmail's JavaScript?
Can anyone tell me what design patterns (if any) were used when building Gmail? I understand the concept behind it - queue up some requests, increment the bar when each completes, init the display ...
7
votes
8answers
6k views
How do I send email to my Gmail account using SMTP and Perl?
I don't want to use sendmail to send an email but would prefer to use SMTP. How can I use Perl to send an email to my GMAIL account?