The default autoresponder for profit maker sites is aweber. If you use another autoresponder you will need to edit the autoresponder text file located in the includes folder named autoresponder.txt.
open this using a text editor and it will look like this.
<div id="autoresponder">
<h3><?php echo AUTORESPONDER_HEADER; ?></h3>
<BR>
<form method="post" action="
http://www.aweber.com/scripts/addlead.pl">
<input type="hidden" name="meta_web_form_id" value="<?php echo AWEBER_FORM_ID; ?>">
<input type="hidden" name="meta_split_id" value="">
<input type="hidden" name="listname" value="<?php echo AWEBER_LIST_NAME; ?>">
<input type="hidden" name="redirect" value="
http://www.aweber.com/form/thankyou_vo.html">
<input type="hidden" name="meta_redirect_onlist" value="">
<input type="hidden" name="meta_adtracking" value="">
<input type="hidden" name="meta_message" value="1">
<input type="hidden" name="meta_required" value="from">
<input type="hidden" name="meta_forward_vars" value="0">
Name: <input type="text" name="name" value="" size="9">
<BR>
Email: <input type="text" name="from" value="" size="9">
<BR><BR>
<input type="submit" name="submit" value="Sign Up Now!">
</form>
</div>
your next step is to delete the autoresponder form it starts from under the <BR> tag and ends at the </form>
your file will now look like this
<div id="autoresponder">
<h3><?php echo AUTORESPONDER_HEADER; ?></h3>
<BR>
</div>
Now you just add the form code from the autoresponder you wish to use.
so it will look something like this.
<div id="autoresponder">
<h3><?php echo AUTORESPONDER_HEADER; ?></h3>
<BR>
<form action="http://*****************" method="post" accept-charset="UTF-8" id="subscription_form">
<fieldset>
<legend>
Subscribe to small buisness solutions
</legend>
<input type="hidden" name="list" id="list" value="sbs" />
<p>
<label for="email" class="label_profile_fields" >
Email Address:
</label>
<input type="text" name="email" id="email" value="" /> <span class="error">* Required</span>
</p>
<div id="subscriber_fields">
</div>
<input type="hidden" name="f" id="f_s" value="subscribe" />
<div class="buttonfloat">
<input type="submit" value="Subscribe" class="processing" id="subscribe_button" />
</div>
<div class="floatclear"></div>
</fieldset>
</form>
now save the file and upload it and you should be all set.