POST
/
admin
/
email
/
settings
curl --request POST \
  --url https://api.helpyousponsor.com/v1/admin/email/settings \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "client_id": "1",
  "from_address": "example@example.com",
  "from_name": "Example Name"
}'
{
  "message": "Email Settings Successfully Saved."
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
Client ID, From Address and From Name are required
client_id
string
Example:

"1"

from_address
string
Example:

"example@example.com"

from_name
string
Example:

"Example Name"

Response

200
application/json
Email settings details
message
string
Example:

"Email Settings Successfully Saved."