2

themeforest から HTML ランディング ページのテーマを購入しました。テーマはメールフォームでオプトインしています。getresponse と統合したいので、通常の getresponse Web フォームのように機能します。どうすればいいですか?

HTML テーマ コードは次のとおりです。

<form method="post" action="[[ PUT_THE_URL_YOUR_FORM_POSTS_TO_HERE ]]">
    <input type="email" placeholder="Enter your e-mail" name="email" id="email">
    <input type="submit" name="submit" id="submit" value="Sign Up"/>
</form>
4

1 に答える 1

2

GetResponse アカウントで、Web フォーム メニューに移動し、[新しい Web フォームの作成] を選択して、[プレーン html] タブに進みます。以下のようなコードが表示されます — これには必要なものがすべて含まれています。

<form action="https://app.getresponse.com/add_subscriber.html" accept-charset="utf-8" method="post">
    <!-- Email field (required) -->
    email: <input type="text" name="email"/><br/>
    <!-- Campaign token -->
    <!-- Get the token at: https://app.getresponse.com/campaign_list.html -->
    <input type="hidden" name="campaign_token" value="CAMPAIGN_ID" />
    <!-- Subscriber button -->
    <input type="submit" value="Subscribe"/>
</form>

さらに、フォーム コード内でaction="https://app.getresponse.com/add_subscriber.html"キャンペーンの ID を指定する必要があることを忘れないでください 。<input type="hidden" name="campaign_token" value="CAMPAIGN_ID" />

于 2016-10-01T21:14:43.413 に答える