Questions tagged [google-email-settings-api]

An API which enables Google partners to programmatically manipulate most user-level Google Mail settings. It was deprecated in 2019.

The Google Email Settings API enables Google partners to programmatically manipulate most user-level Google Mail settings. It supports many operations, such as:

  • Creating filters, labels, aliases, delegates;
  • Updating various settings for a user's account;
  • Retrieving existing settings for a user's account.

Your application will be able to interact with the API sending HTTP requests (GET, POST or PUT) to specific URLs (each of them represents a particular user's setting).


You can visit the official API page and consult the Developer's Guide for further information.

74 questions
1
vote
1 answer

How can i send email to multiple email Cc ID's using php and google gmail api?

how to give multiple Cc in google mail api $service = new Google_Service_Gmail($client); $user = 'me'; $strSubject = "Faculty status on the track"; $strRawMessage = "From:\r\n"; $strRawMessage .=…
vidya devi
  • 239
  • 3
  • 16
1
vote
2 answers

Missing features in Gmail API

Please confirm the deprecation date for Email setting API. And please provides the roadmap on this. As we will run into problems if we lose this support. Bellow is the missing features - Managing language settings Managing delegation…
Amit Rai
  • 89
  • 5
1
vote
2 answers

Failed sending mail through google api

I've been trying to send emails using Google's Gmail API and I kept getting the following error: The API returned an error: Error: 'raw' RFC822 payload message string or uploading message via /upload/* URL required I did the setup using the…
kevguy
  • 4,328
  • 1
  • 24
  • 45
1
vote
0 answers

IOS application can't get google user data

I am learning writing ios app with Swift. But when I follow the instruction on the Google Developers page. https://developers.google.com/identity/sign-in/ios/start?ver=swift Xcode show many compile wrong for me. For example, this code on the…
1
vote
1 answer

Email Settings API - Signature

I am trying to update the signature of all the users of my company and have looked for days and cannot find any proper solution. I have used code snippets of python, Google apps script but none seem to work. Could anybody guide me to do build such…
1
vote
1 answer

include a loading page in between registration and thank you pages

Hi i would like to add a loading or waiting page after form submission. I've registration page and thank you page, and have to send out a registration email before showing the thank you page. Email sending will takes around 2 min. So if i can add a…
Lucky13
  • 11,393
  • 7
  • 25
  • 36
1
vote
0 answers

Unable to delegate users using Email Settings API

Does anyone know if the Admin SDK / Email Settings API has changed recently? Previously we were able to delegate a user account for a user that was disabled, this is no longer that case. Following is the stacktrace: 400 Bad Request { "error" :…
Main Pal
  • 449
  • 5
  • 14
1
vote
0 answers

Google Email Settings API Change?

Does anyone know if the Admin SDK / Email Settings API has changed recently? Previously we were able to delegate a user account for a user that was disabled, this is no longer that case. Thanks
user3497630
  • 23
  • 1
  • 3
1
vote
0 answers

Using Google EmailSettings API to set multiple forward addresses through Filters

If email forwarding enabled and email address set, then need to add additional forward address(es). Since gmail does not allow more than 1 forwardTo, want to use filters. So, for all incoming mail, want these to be forwarded to the currently set…
1
vote
0 answers

Can not get EmailSetting to work with oauth2 bearer and account service

service_account_mail = 'xxxxxx@developer.gserviceaccount.com' service_account_client_id = 'xxxxxx.apps.googleusercontent.com' with open("private_key.p12") as f: private_key = f.read() gapps_scope=[ 'https://www.googleapis.com/auth/drive', …
ldng
  • 11
  • 1
1
vote
2 answers

How to retrieve gmail signature with google apps script

I've created a script in google apps script which reads the contents of a google doc into a draft message in gmail. It doesn't, however, append the user's signature. So my plan would be to retrieve the signature, and then append to the contents of…
justbriman
  • 23
  • 1
  • 5
1
vote
1 answer

Move Google EmailSettings API python code from OAuth1 to OAuth2 service account

To use the new Google Directory API we created an OAuth2 "service account" (see Using OAuth 2.0 for Server to Server Applications). This is basically a PKCS #12 file. All of our Directory API scripts work fine with this service account. We also use…
rlandster
  • 7,294
  • 14
  • 58
  • 96
1
vote
1 answer

GmailSettingsService not found

I am creating a java app for Google admin tasks and have successfully accessed a few bits using various Google APIs. However I am having trouble with the "Google Apps Email Settings API" The sample code given for Java shows the import as:- import…
Philip Mc
  • 11
  • 2
1
vote
1 answer

Migrate from Google Data (GData) APIs to new Google APIs Client Library for Java

In our organization we have an in-house developed web based application that make use of Google Data (GData) APIs(gdata-java-client) API to manage email user accounts, email settings, nickname, profile updates , contact management. This application…
1
vote
2 answers

Google Apps Email Settings API using .Net and OAuth 2.0

I want to use the email settings API, but can not find any documentation how to use this api with the oAuth2 authentication Am I using the correct API? Am I using the latest API? (Google.GData.Apps.dll Version 2.2.0) How can I use this DLl with…