Add SPF description
[MAILPOET-2693]
This commit is contained in:
committed by
Veljko V
parent
9111e18e35
commit
cbac68d3a1
@@ -1,10 +1,13 @@
|
|||||||
import React from 'react';
|
import React from 'react';
|
||||||
import SendingMethod from './sending_method';
|
import SendingMethod from './sending_method';
|
||||||
|
import SPF from './spf';
|
||||||
|
|
||||||
export default function OtherSendingMethods() {
|
export default function OtherSendingMethods() {
|
||||||
return (
|
return (
|
||||||
<div className="mailpoet-settings-grid">
|
<div className="mailpoet-settings-grid">
|
||||||
<SendingMethod />
|
<SendingMethod />
|
||||||
|
|
||||||
|
<SPF />
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
14
assets/js/src/settings/pages/send_with/other/spf.tsx
Normal file
14
assets/js/src/settings/pages/send_with/other/spf.tsx
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
import React from 'react';
|
||||||
|
import { t } from 'common/functions';
|
||||||
|
import { Label, Inputs } from 'settings/components';
|
||||||
|
|
||||||
|
export default function SPF() {
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
<Label title={t('spfTitle')} description={t('spfDescription')} htmlFor="" />
|
||||||
|
<Inputs>
|
||||||
|
{t('spfSetup')}
|
||||||
|
</Inputs>
|
||||||
|
</>
|
||||||
|
);
|
||||||
|
}
|
Reference in New Issue
Block a user