gmail

How to change Gmail's password programmatically?

I came across this issue recently where I needed to change a Gmail's account password programmatically and am still thinking about the ideal approach. Basically by providing Gmail's current username/password my application would then authenticate and request the password to be changed to a new one provided and return success. CURL seem...

Now this may seem like a bad idea, but I need to read gmail on a different site. Just hear me out.

I need to read mail from gmail on my site. We're creating a project for my software engineering class, in ASP.NET or Java (we haven't decided on the technology yet) and it is basically a forum not too different from StackOverflow. Only thing is, it's going to be on the institute's LAN. Now they don't let us access any website but you can...

Android Gmail attachment

Hello all. I'm trying to get the name of the file attached to an email on the gmail app? Can anyone point in the direction of getting the file name ? I can get the attachemnt, just don't know how to get the original file name. ...

Anyway to allow images in gmail email

I am sending a newsletter to users. By default the images don't display in GMail. Is there any way that if attach the image with email then they can see the image by default in gmail or any other way? ...

Creating a gmail domain.

Hi guys. I want to create several gmail accounts that use gmail as mail. Something like, myname.mycompany.net, and using gmail. How do I do this? Thx. ...

Get unread email feed and auto sign-in into GMail

Hi, I'm making an application in Adobe AIR, trying to do two things that GoogleTalk does nicely: Get the latest feed from https://mail.google.com/mail/feed/atom To allow the user to click on a button in the application to automatically sign into GMail in a new browser. I was able to get the ClientLogin auth key but it's useless for b...

PHP Mailer works on localhost (MAMP), but not on live site

I'm learning to make websites and I'm putting together a simple website for my parents business. I made a contact form and the message is just emailed to my parents' email. I just looked up a sample gmail php code to send mail and it works when I test it with MAMP, but when I upload it to the live site, I get this error: SMTP Error: Co...

reaching Gmail SMTP daily limit

Hello guys, In one of my Rails applications I'm sending emails through the Gmail SMTP server and everything just works, mails are not going to spam and so on ... But there's one thing that concerns me, the 500messages/day limit the SMTP has, currently I'm over 350/day. I didn't find any official Google page where they talk about the subj...

How can I create a e-newsletter, and also a header for an email [Gmail]?

I don't know anything about anything so please bare with me, Im using Gmail and I want to create a newsletter on gmail, and also a header, but I know how to do neither :(. Please help me, I have Microsoft outlook 2010, but I don't even know hot to set it up...I need it someone to dumb it down to me...Im way too lost. ...

How to open Gmail Compose when a button is clicked in Android App?

Hi I am trying to open up Gmail Compose screen when a button is clicked in my Android App. Do I need some API key for this from Google? or what do I need to do in my button onClickListener? Any kind of insight is much appreciated. ...

Adding custom function to gmail's web surface to access a WCF web service

Hi, I need a way to extend GMail's web surface in order to be able to send the message body of the currently selected emails (multi select) to my WCF .Net web service. Is there a way to accomplish this in a secure way? I need it to be available only by me and other colleges I trust. Thank you. -- Hudgi ...

Plugin for using pgp encryption with gmail

Are there any Firefox or Chrome plugins for encrypting/decrypting and signing/verifying emails for web based gmail? I have Thunderbird setup to do this but I'm interested in doing this on a browser. Firefox had a plugin called FireGPG which does exactly this but the developer abandoned the project and now I can't find anything that's si...

Javamail IMAP connection with Gmail drops after a random duration

I'm using Javamail to authenticate into gmail imap server and fetch messages headers for complete mailbox one at a time and index locally. For inboxes which have few messages, this works fine. For inboxes with messages more than 10k in general, javamail imap connection gets dropped (possibly by server). The point to note is that this dur...

gmail reply to not working with javamail

Hi I can send mails with gmail with javamail But i cannot set the reply to anyhow... the code i m using is... //the actual mail id [email protected] ccAddress = new InternetAddress( "[email protected]"); msg.setFrom(ccAddress); Address[] addresses = new Address[1]; //actually i want to addre...

Can I use Javascript to talk to a server without XMLHttpRequest?

I'm trying to write a chat client using javascript, but I'm being hindered by only being able to communicate with the server using XMLHttpRequest which as far as I can tell is completely unsuitable, as many have told me. I've looked for other networking functions but haven't found any and been told that there aren't any. It's almost eno...

Create gmail, facebook and twitter account through API?

Is it possible to create gmail, facebook and twitter account through API? ...

how is google able to provide free calls to US/CANADA from gmail?

Hello, Could anyone help me understand how the server/PBX mechanics would work for Google free calls trough gmail. Do they host hundreds of phone lines across the country and link them with VoIP. To they have a central location and preferred pricing from the telecoms. Basically, I would like to replicate part of this functionality for a...

How to get UID of mail in All Maill folder if I have UID of this mail in inbox using imaplib? (GMail)

How to get UID of mail in All Maill folder if I have UID of this mail in inbox using imaplib? As you know the google store mails in the two instances in All Mail and in inbox I whant to move this to mail in trash folder using imaplib ...

The remote certificate is invalid according to the validation procedure. GMAIL

The function below works in a console application but it's not working in my asp.net web site. I am getting an error: The remote certificate is invalid according to the validation procedure. public static void SendEmail(MailMessage mm) { SmtpClient smtp = new SmtpClient(); smtp.Host = "smtp.gmail.com"; smtp.Port = 587; s...

Sending email using ASP.NET I am getting this error

The SMTP server requires a secure connection or the client was not authenticated. The server response was: 5.7.0 Must issue a STARTTLS command first. u6sm344516ibd.6 I have my code like this? MailAddress to = new MailAddress("[email protected]"); MailAddress from = new MailAddress("[email protected]"); MailMessage message = new MailMessa...