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 (
+ <>
+
+
+
+
+
+
+
+
+
+
+
+
+
+ >
+ );
+}
diff --git a/assets/js/src/settings/pages/send_with/other/other_sending_methods.tsx b/assets/js/src/settings/pages/send_with/other/other_sending_methods.tsx
index d393e6367e..9bc89bff93 100644
--- a/assets/js/src/settings/pages/send_with/other/other_sending_methods.tsx
+++ b/assets/js/src/settings/pages/send_with/other/other_sending_methods.tsx
@@ -6,6 +6,7 @@ import TestSending from './test_sending';
import ActivateOrCancel from './activate_or_cancel';
import PHPMailFields from './php_mail_fields';
import SmtpFields from './smtp_fields';
+import AmazonSesFields from './amazon_ses_fields';
export default function OtherSendingMethods() {
const [method] = useSetting('mta', 'method');
@@ -14,6 +15,7 @@ export default function OtherSendingMethods() {
{method === 'PHPMail' && }
{method === 'SMTP' && }
+ {method === 'AmazonSES' && }