Questions tagged [google-inbox]

Google email app for Android, iOS, and Google's Chrome browser.

Google email app for , , and browser.

Useful links

46 questions
0
votes
0 answers

Google Scripts Auto-Forward for Google Inbox

I used this code for Gmail but now I am looking to do something similar for Google Inbox. The problem is that Google Inbox does not support labels, so I have to come up with another solution. Perhaps somehow check emails inside a container every 5…
JoaMika
  • 1,727
  • 6
  • 32
  • 61
0
votes
2 answers

How to change Android App theme at runtime like Google Inbox App?

The inbox app features a navigation drawer. Upon clicking on any navigation drawer item a fragment is loaded (most probably) and during this transaction the app theme changes. Changing app theme requires setTheme() method to be called before…
0
votes
1 answer

Android - Java mail - Gmail 'Mark as unread' & Inbox 'Snooze'

My homemade Android email client app, using Java mail, works fine with google mail service. One use case for which I would like some piece of advice does concern the 'unread messages': Whenever I 'Mark as unread' an email in mail.google.com, my…
Pascal
  • 15,257
  • 2
  • 52
  • 65
0
votes
0 answers

HTML Email: Text size increase Google Inbox

When coding emails, and testing in Litmus, I am noticing Google Inbox for Android makes the text larger than actual size, which causes issues in layout especially on buttons. I have tried all kinds of solutions, even the ones on this page:…
roob
  • 85
  • 1
  • 1
  • 8
0
votes
2 answers

gmail app script cleaninbox modding

Sorry, i'm not a programmer, I'm using this gmail app script (CLEANINBOX) and it works great in roder to keep my inbox clean. As I need to use INBOX app (mobile) and GMAIL app (desktop) at the same time I need to implement this script in order to…
0
votes
1 answer

When creating an electron wrapper what is the right way to watch for notifications?

I am working with electron and various websites such as trello and inbox. I would like to add native notifications (which functionally i have working) however i need to know what the correct approach is to watch the site for notifications. Do I ask…
mattpilott
  • 356
  • 1
  • 6
  • 13
0
votes
0 answers

Gmail Email Markup validates and passes SPF but fails to render

I'm using the Parcel Delivery schema and have had success all the way up to the point of rendering correctly inside Google Inbox. I'm still at the point of testing so I'm sending email from fixme@gmail.com to fixme@gmail.com which should be enough…
Greg
  • 2,559
  • 4
  • 28
  • 46
0
votes
0 answers

What JSON LD syntax to use to display a company icon with an email in Google Inbox/Gmail

When using json ld to markup an email, what JSON LD schema must be used to display a company icon with your email in Google Inbox/Gmail. I've tried setting multiple props as follows, but Google does not recognise the metadata.
Learner
  • 2,459
  • 4
  • 23
  • 39
0
votes
1 answer

InboxSDK - Unable to attachFiles through composeView object

I am trying to attach an attachment through the composeView object using Inboxsdk. I obtain a blob object from a remote url using the following code. // FUNCTION TO OPEN A NEW COMPOSE BOX ONCE THE ATTACHMENT BLOB IS OBTAINED FROM REMOTE…
anurag
  • 2,176
  • 2
  • 22
  • 41
0
votes
0 answers

Passing Bundle Names to External Mail Clients

Is there any way to access the bundle in an email is in? I like Inbox but need to use a desktop client so I can unify all of my accounts into one place. I'd like to make rules, either at the Inbox level or in my client, Airmail, to put items into…
jvhang
  • 747
  • 6
  • 19
0
votes
1 answer

Looking for GmailThread.moveToCustomLabel() - Moving thread from Inbox to Custom Label

Per Google Thread API there are methods to move a thread to Archive,Inbox,Spam,Trash. However, I would like to move a thread from Inbox to a custom label created by me. Is there a way to achieve this with Google App API ? Thanks
user1339772
  • 783
  • 5
  • 19
0
votes
1 answer

Image next to Contact name in Google's Inbox

When receiving emails in Google's Inbox, usually you get as image a coloured circle with the first letter of the contact's mail. But in rare occasions, there will be an image placeholder, like for instance the example I paste for YouTube. (I know…
Enrique Moreno Tent
  • 24,127
  • 34
  • 104
  • 189
0
votes
1 answer

responsive email not working gmail .com/ inbox.google.com on desktop browser

I have a responsive email template. it is rendering well on mobile apps but on browser its responsive behaviour not working. even inbox.google.com is responsive but the responsive emails are not working in it. for reference i used many email…
sumitmann
  • 393
  • 1
  • 3
  • 14
0
votes
2 answers

How to hide and show the Android ActionBar like in Google Inbox app?

I wnat to show and hide the Android ActionBar when the user scrolls the screen. I found some examples, like this question in SO. But the code showed in this question and its answer makes the action hides after the list have scrolled some pixels, and…
androidevil
  • 9,011
  • 14
  • 41
  • 79
0
votes
1 answer

how does google's inbox async calls works?

by placing this small snippet in chrome's console can hook to any ajax call in a page: (function(open) { XMLHttpRequest.prototype.open = function(method, url, async) { console.log('ajax call!'); //do things open.call(this, method, url,…
Sagiv Ofek
  • 25,190
  • 8
  • 60
  • 55