Questions tagged [gmail]

Gmail is a free email service offered by Google. ONLY use this tag for PROGRAMMING questions related to Gmail's APIs. General Gmail usage questions belong at https://webapps.stackexchange.com/questions/tagged/gmail

Gmail is a free email service offered by Google. Use this tag for programming questions related to Gmail's APIs. General Gmail usage questions belong at webapps.stackexchange.com

The Gmail API is a API that can be used to access Gmail mailboxes and send mail. For most web applications (including mobile apps), the Gmail API is the best choice for authorized access to a user's Gmail data.

The API supports many of the basic operations available through the Gmail user interface like reading, composing, and sending mail. It also lets you manage labels on threads and messages and query for specific messages and threads.

Resources

10636 questions
3
votes
1 answer

Google GMail API - users.messages.import() not in INBOX Why?

I am importing directly a message using the GMAil API When I look in to the GMail user account ( browser GMail app) I can see th message received in All Mails , but not in the INBOX Google GMail API states : Users.messages.import() Imports a…
user762579
3
votes
1 answer

Python - Get datetime of mails - Gmail

I was trying to download the attachments from the Gmail using python for a specific keyword and the code is below, def read_email_from_gmail(): mail = imaplib.IMAP4_SSL(imap_url) mail.login(user, password) mail.select('"[Gmail]/All…
Vignesh
  • 1,183
  • 2
  • 10
  • 18
3
votes
3 answers

Testing Send endpoint for Gmail API with Postman

I am trying to send emails with the Gmail API. I am trying to use Postman to test my requests and get the proper code to use in my web application, but I keep getting this error: { "error": { "errors": [ { "domain":…
Alex Buhse
  • 41
  • 1
  • 3
3
votes
2 answers

how to switch off conversation view in App Script

I am working on a script which extracts Gmail attachments from received email addresses assigned to specific labels and to move the attachments to specific folders in Google Drive now my problem is when I receive an email from the same sender of the…
Thomas Chirwa
  • 321
  • 4
  • 11
3
votes
2 answers

How to use Materialize.css in an email?

I'm trying to create an email template in Django which uses Materialize.css. Here is the template code:
Kurt Peek
  • 52,165
  • 91
  • 301
  • 526
3
votes
2 answers

Gmail not displaying image on mail Laravel

I have this problem here when I send an email to Gmail the image is broken while on the other accounts like Outlook or others it shows fine. Only on Gmail it does not show.. the URL looks like this:
Agi
  • 31
  • 1
  • 3
3
votes
1 answer

HTML e-mail signature is disaplayed differently by gmail

I am using Thunderbird as my primary work mail client. I have just created a new HTML signature, which shows correctly in the Thunderbird, in Opera and in an online HTML Viewer but not on GMail. I would be very grateful if anyone could point me in…
3
votes
1 answer

Get user's google(gmail profile pic or google+) avatar profile image

I guess Gmail API doesn't provide any way to get users profile image. I can use Google+ API to get the url but I should have user's google+ username. I only have user's email id and his/her account access token(gmail). The answer to this question…
3
votes
4 answers

Using jQuery on sites like Gmail or Facebook

I'm trying to login users to websites automatically, given their username and password. To do this I'm using a Chrome extension, where every page would load my content script that will try and find out where the username and password boxes are and…
Noam
  • 479
  • 1
  • 7
  • 17
3
votes
2 answers

Check Gmail IMAP via PHP for new messages in a loop

I am studying an application to trigger a PHP script based on new IMAP emails arriving on Gmail. What's the best way to know a new email has arrived on a Gmail IMAP account? I can't think of anything but to configure a cron job. I am running PHP +…
Roger
  • 8,286
  • 17
  • 59
  • 77
3
votes
1 answer

Android: How to use intent-filter to process a PDF email attachment?

I've been trying to have either the email or gmail applications give me the option of using my application to open a PDF attachments to no avail. My intent-filter looks like:
jmr
  • 31
  • 1
  • 2
3
votes
3 answers

Gmail Send Quota, When Sending Using Google App Engine

Gmail imposes a daily 500 recipient quota for sending emails. If you send through their POP/IMAP interface that quota is only 100 recipients per day. What is the sending quota for sending an email on a gmail account using the google app engine?…
speedplane
  • 15,673
  • 16
  • 86
  • 138
3
votes
5 answers

Remove underline of links in email signature in Gmail

I have tried every suggested approach and I cannot get rid of the blue underline of the links of my Outlook signature on Gmail desktop (it's fine on Gmail Android app). I tried to apply text-decoration: none !important to all links, on the tag…
Michael D
  • 41
  • 1
  • 2
3
votes
1 answer

How to fetch GMail contacts in my iphone App

I need to fetch Gmail contacts by providing a gmail username and password. Any frameworks, Api's, Sample codes.. I know about XMPPframework that can fetch gmail chat contacts. but i want contacts from gmail address book. Any help would be…
ipraba
  • 16,485
  • 4
  • 59
  • 58
3
votes
1 answer

Watch All emails Through Gsuite Account

I'm familiar with the concepts of push notification with Gmail and 'webhooks' in general. My question is - is there a way to get push notifications about all Gmail Users Emails that are related to the same Gsuite Account? I know that there is a way…
1 2 3
99
100