diff --git a/assets/js/src/settings/pages/send_with/other/amazon_ses_fields.tsx b/assets/js/src/settings/pages/send_with/other/amazon_ses_fields.tsx new file mode 100644 index 0000000000..fd992b5f2b --- /dev/null +++ b/assets/js/src/settings/pages/send_with/other/amazon_ses_fields.tsx @@ -0,0 +1,47 @@ +import React from 'react'; +import { Label, Inputs } from 'settings/components'; +import { t, onChange } from 'common/functions'; +import { useSetting } from 'settings/store/hooks'; +import SendingFrequency from './sending_frequency'; + +export default function AmazonSesFields() { + const [region, setRegion] = useSetting('mta', 'region'); + const [accessKey, setAccessKey] = useSetting('mta', 'access_key'); + const [secretKey, setSecretKey] = useSetting('mta', 'secret_key'); + return ( + <> + +