Skip to content

Returns the global email notification settings — digest schedule, sender details and template branding — falling back to the portal logo when no email-specific logo is set.

Endpoint

  • Method: GET

  • Path: /admin/email-settings

  • Edition: Core

  • Controller: AdminController@getEmailSettings

  • Route source: fluent-community/app/Http/Routes/api.php:103

  • Controller source: fluent-community/app/Http/Controllers/AdminController.php

  • Requires the FluentCommunity community-admin permission (or a WordPress super admin).

Live sample

The request and response below were recorded against a running FluentCommunity install and then anonymised — member names, emails, avatars and post content are fictional, and long collections are trimmed to a few entries.

GET Get Email Settings

GET
/admin/email-settings

Returns the global email notification settings — digest schedule, sender details and template branding — falling back to the portal logo when no email-specific logo is set.

Controller: AdminController@getEmailSettings
Route source: fluent-community/app/Http/Routes/api.php:103

Authorizations

ApplicationPasswords

WordPress Application Passwords — use Basic auth with username:application_password.

Type
API Key (header: Authorization)

Responses

Successful response

application/json
JSON
{
  
"email_settings": {
  
  
"com_my_post_mail": "string",
  
  
"daily_digest_time": "string",
  
  
"digest_email_status": "string",
  
  
"digest_mail_day": "string",
  
  
"disable_powered_by": "string",
  
  
"email_footer": "string",
  
  
"email_footer_rendered": "string",
  
  
"global_logo": "string",
  
  
"logo": "string",
  
  
"mention_mail": "string",
  
  
"reply_my_com_mail": "string",
  
  
"reply_to_email": "string",
  
  
"reply_to_name": "string",
  
  
"send_from_email": "string",
  
  
"send_from_name": "string"
  
}
}

Playground

Authorization

Samples

Powered by VitePress OpenAPI

FluentCommunity developer documentation