Gmail is a webmail service offered by Google. Use this tag for programming questions related to Gmail's APIs.
0
votes
0answers
7 views
My Java program stopped sending emails using my gmail Account
I searched several related posts here and in other places, but none of them solved my problem. I have a program that sends emails to a set of people using "javamail API". It worked fine once. Today I ...
117
votes
8answers
90k views
How to send an email by Java application using Gmail/ Yahoo/ Hotmail
Is it possible to send an email from my Java application using a Gmail account? I have configured my company mail server with Java app to send email, but that's not going to cut it when I distribute ...
2
votes
2answers
16 views
HIGHESTMODSEQ response from gmail
I have a python script that uses a twisted imap4.IMAP4Client to check for new emails in a gmail account. It does so every ~30 seconds. It has been running fine for months.
Starting June 11, I began ...
9
votes
6answers
3k views
Gmail Syntax Highlighter
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?
0
votes
0answers
13 views
Can't connect to SMTP server using PHP Mailer but can with Gmail?
I am getting the following error from PHP Mailer when running a script in my local PC:
SMTP -> ERROR: Failed to connect to server: A connection attempt failed because the connected party did not ...
-1
votes
0answers
15 views
configure gmail on Mac OSX [closed]
I'm trying to configure my email on the Mail App unde Mac OSX Version 10.8.3. When I enter all the information and click "Continue" in the Add new account window I get an error : "The Google IMAP ...
0
votes
1answer
14 views
One click confirm button of gmail schema not appearing inside body of email
I have developed google app engine application to send schemas in gmail for one click action. I have followed tutorial at
https://developers.google.com/gmail/schemas/reference/one-click-action
The ...
0
votes
1answer
17 views
Email Newsletter - Layout goes weird in gmail
I created a newsletter for MailChimp. All looks good when I put it in the mailchimp website.
However when I send a test email to myself, some parts of the layout goes wrong in Gmail.
Some content ...
2
votes
2answers
31 views
Sending mail using gmail from behind a proxy using java
My current code is (I am using correct username and password in actual code) :-
public class MailTry {
public static void main(String[] args) {
final ...
1
vote
2answers
60 views
Get Gmail Contacts from into C# desktop form
I am trying to get the contacts of Gmail in to C# desktop form application, i have used the google APi for this purpose, i want to show the contacts of gmail in gridview as the button is pressed. but ...
0
votes
0answers
14 views
Overcoming gmail's country lock in imap client
I have created an online imap library and a very basic web client for logging into gmail account.
Now according to Google, my location that i use gmail from is Pakistan but my code is hosted on ...
0
votes
4answers
179 views
How can i get suggestion for Email addresses while typing the “To” filed?
I am writing an app that will send an email using the Java Mail external library. I searched for a week about how can i display to user Email addresses suggestions, like the ones being displayed in ...
1
vote
1answer
40 views
How do I fix a javax.mail.MessagingException when using SMTP through GMail?
I cannot execute code that is publicly available for sending email through Gmail. I think it may be a network problem because I am at work although I am able to ping Gmail through the cmd prompt: ping ...
1
vote
0answers
22 views
How to use Default Javamail Session in Websphere with GMail
I'm trying to create an javamail Session in Websphere 7 to use GMail, but my authentication always fail.
Yes man, my password is ok ...
I'm configuring my Session as:
Output Mail Properties
...
1
vote
0answers
27 views
How do I send email from my Gmail account in my Node.js script?
app.get('/email', function(req,res){
var emailjs = require('emailjs');
var email_server = emailjs.server.connect({
host: 'smtp.gmail.com',
ssl: true,
tls: true,
...