Skip to content

TSubmitContactFormProps object

The TSubmitContactFormProps object represents contact details and is used in the methods of the Contact Form Api.

type TSubmitContactFormProps = {
    email: string;
    name: string;
    subject: string;
    content: string;
};

Properties

TSubmitContactFormProps.email

string The email of the author of the message sent via the contact form.

TSubmitContactFormProps.name

string The name of the author of the message sent via the contact form.

TSubmitContactFormProps.subject

string The subject of the message sent via the contact form.

TSubmitContactFormProps.content

string The content of the message sent via the contact form.

APIs reference