aboutsummaryrefslogblamecommitdiffhomepage
path: root/shared/extra-utils/server/contact-form-command.ts
blob: 0e8fd6d840b5deebceffdb203e7e24e8914a133d (plain) (tree)
1
                                               























                                                                   
                   
                           



                                                          
import { HttpStatusCode } from '@shared/models'
import { ContactForm } from '../../models/server'
import { AbstractCommand, OverrideCommandOptions } from '../shared'

export class ContactFormCommand extends AbstractCommand {

  send (options: OverrideCommandOptions & {
    fromEmail: string
    fromName: string
    subject: string
    body: string
  }) {
    const path = '/api/v1/server/contact'

    const body: ContactForm = {
      fromEmail: options.fromEmail,
      fromName: options.fromName,
      subject: options.subject,
      body: options.body
    }

    return this.postBodyRequest({
      ...options,

      path,
      fields: body,
      implicitToken: false,
      defaultExpectedStatus: HttpStatusCode.NO_CONTENT_204
    })
  }
}