Hallo,
ich habe mir das Newsletterscript von http://www.webinsta.com installiert. Das geht soweit auch ganz gut, nur die Einbindung ist der Horror.
Ich bekomme einfach das Formular nicht zum Laufen. Weder eine Bestätigungsmail kommt, noch wird die Adresse eingeztagen.
Da steht etwas von
und danach kommt das
Außerdem gibt es dann noch Mailbarcodes wie dieser hier:
Ich weis echt nicht wie und wo ich welchen Code einbinden muss. Es werden nur Fehler angezeigt...
Kennt sich jemand damit aus?
Help.
Marcel
ich habe mir das Newsletterscript von http://www.webinsta.com installiert. Das geht soweit auch ganz gut, nur die Einbindung ist der Horror.
Ich bekomme einfach das Formular nicht zum Laufen. Weder eine Bestätigungsmail kommt, noch wird die Adresse eingeztagen.
Da steht etwas von
Select one of the subscribe boxes and put the folowing line into your homepage (also beware of the group ID, default is 1 and there are several mailbar's from which you can choose)
<?php
$mailbar=1;
$group=1;
include("maillist/mailbar.php");
?>
<?php
$mailbar=1;
$group=1;
include("maillist/mailbar.php");
?>
Then select the place where you want your visitor to see the subscribe boxes and put the following lines into that area
<?php
if(isset ($_GET['page']))
{
if ($_GET['page'] == "mail")
{
include("maillist/mailmain.php");
}
if ($_GET['page'] == "about")
{
include("about.php");
}
}else {
/* include( your title page"); */
print(":The subscribe messages will appear here :");
}
?>
<?php
if(isset ($_GET['page']))
{
if ($_GET['page'] == "mail")
{
include("maillist/mailmain.php");
}
if ($_GET['page'] == "about")
{
include("about.php");
}
}else {
/* include( your title page"); */
print(":The subscribe messages will appear here :");
}
?>
<?php include("globals.php"); ?>
<form action="<?php echo $website.$relative_string;?>" name="subscribe" onsubmit="javascript:return checkNEmail(this);" method="post">
<table width="100%" border="0" align="center" cellpadding="5" cellspacing="0">
<tr>
<td width="94%"><strong>
<input name="name" type="text" class="box" id="email2" value="Your name" size="20" onfocus="this.value='';" >
<input name="group" type="hidden" id="group[]" value="<?php echo $group; ?>">
</strong></td>
</tr>
<tr>
<td><strong>
<input name="email" type="text" class="box" id="email2" value="Your email address" size="20" onfocus="this.value='';" >
</strong></td>
</tr>
<tr>
<td valign="middle"> <div align="center">
<input name="subscribe" type="hidden" id="subscribe" value="true">
<input name="Submit2" type="submit" class="box" value="Submit">
</div></td>
</tr>
</table>
</form>
<form action="<?php echo $website.$relative_string;?>" name="subscribe" onsubmit="javascript:return checkNEmail(this);" method="post">
<table width="100%" border="0" align="center" cellpadding="5" cellspacing="0">
<tr>
<td width="94%"><strong>
<input name="name" type="text" class="box" id="email2" value="Your name" size="20" onfocus="this.value='';" >
<input name="group" type="hidden" id="group[]" value="<?php echo $group; ?>">
</strong></td>
</tr>
<tr>
<td><strong>
<input name="email" type="text" class="box" id="email2" value="Your email address" size="20" onfocus="this.value='';" >
</strong></td>
</tr>
<tr>
<td valign="middle"> <div align="center">
<input name="subscribe" type="hidden" id="subscribe" value="true">
<input name="Submit2" type="submit" class="box" value="Submit">
</div></td>
</tr>
</table>
</form>
Kennt sich jemand damit aus?
Help.
Marcel
Kommentar