19 lines
662 B
TypeScript
19 lines
662 B
TypeScript
import FormField from "../../../../components/FormField";
|
|
|
|
export default function SenderStep() {
|
|
return (
|
|
<div className="form-grid">
|
|
<FormField label="From name"><input placeholder="Office" /></FormField>
|
|
<FormField label="From email"><input placeholder="office@example.org" /></FormField>
|
|
<FormField label="Reply-To"><input placeholder="reply@example.org" /></FormField>
|
|
<FormField label="IMAP append to Sent">
|
|
<select>
|
|
<option>Enabled, auto-detect Sent folder</option>
|
|
<option>Disabled</option>
|
|
<option>Enabled, manual folder</option>
|
|
</select>
|
|
</FormField>
|
|
</div>
|
|
);
|
|
}
|