• Hello,

    I know a bit about programming, but this code made me troubles. I know the solution is easy!

    I tried several ways but I can’t bring it to work… Maybe somebody can help me to implement my auto responder into my website.

    That would be great! That is the standard code of my website:

    <div class="optBox">
            <h3>Enter Your Info Below To Register</h3>
            <form method="post" class="" action="">
            <label class="previewLabel" for="awf_field"></label>
            <input type="text" class="text" id="awf_field" name="email" value="First Name..." tabindex="500" onfocus=" if (this.value == 'First Name...') { this.value = ''; }" onblur="if (this.value == '') { this.value='First Name...';} ">
            <input type="text" class="text" id="awf_field" name="email" value="Your email address..." tabindex="501" onfocus=" if (this.value == 'Your email address...') { this.value = ''; }" onblur="if (this.value == '') { this.value='Your email address...';} ">
            <input type="submit" name="submit" class="submit btn" value="Register Now" tabindex="502">
            </form>
            </div>

    In this Opt-In Box above I would like to implement the data from the code below, so that I get just the name and the email-address from the subscriber. “MYSUB_CODE” will be replaced by the subscription code from MailChimp.

    <div id="mc_embed_signup">
    <form action="MYSUB_CODE" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate" target="_blank">
    
    <div class="mc-field-group">
    	<label for="mce-NAME">Name </label>
    	<input type="text" value="" name="NAME" class="" id="mce-NAME">
    </div>
    <div class="mc-field-group">
    	<label for="mce-WSITE">Website </label>
    	<input type="text" value="" name="WSITE" class="" id="mce-WSITE">
    </div>
    <div class="mc-field-group">
    	<label for="mce-EMAIL">Email Address </label>
    	<input type="email" value="" name="EMAIL" class="required email" id="mce-EMAIL">
    </div>
    	<div id="mce-responses" class="clear">
    		<div class="response" id="mce-error-response" style="display:none"></div>
    		<div class="response" id="mce-success-response" style="display:none"></div>
    	</div>	<div class="clear"><input type="submit" value="Subscribe" name="subscribe" id="mc-embedded-subscribe" class="button"></div>
    </form>
    </div>

    Big thanks to everyone who takes a bit of time for me! Thank you!

  • The topic ‘HTML NEWSLETTER’ is closed to new replies.