Verfasst: 22.09.2009, 18:34
Mir mal per E-Mail das ganze Script schicken.
https://board.superscripte.de/
Code: Alles auswählen
<?php
#############################################################################
# SUPERMAILER SUBSCRIBE/UNSUBSCRIBE SCRIPT #
# Double-Opt-In #
# Copyright © 2001 - 2008 Mirko Boeer #
# http://www.supermailer.de/ #
# #
# Dieses Script kann kostenlos eingesetzt werden, jedoch muss dieser Header #
# im Script enthalten bleiben! #
# This script can be used for free. The header must be contained in script! #
# #
# Systemvoraussetzungen: PHP 4 und Windows/Unix #
# 05.01.2008 #
#############################################################################
error_reporting(0);
# Geben Sie die E-Mail-Adresse Ihres POP3/IMAP Postfachs an
# Enter the email address of your POP3/IMAP inbox
$Recipient=\"...@...de\";
# Geben Sie die Seite an, die angezeigt werden soll, wenn eine ANmeldung erfolgte
# und an den neuen Abonnenten die E-Mail zur Bestätigung gesendet wurde
# Angabe mit http://
# Enter the page that should be shown if a recipient wants to subscribe to your recipients list
# and the confirmation is be sent.
# With http://
$ConfirmationMailSendOKPage=\"http://www.nix-wie-weg.de/newsletter/anmeldung.html\";
# Geben Sie die Seite an, die angezeigt werden soll, wenn eine ANmeldung erfolgte
# Angabe mit http://
# Enter the page that should be shown if a recipient will bei added to your recipients list
# With http://
$SubscribeOKPage=\"http://www.nix-wie-weg.de/newsletter/abgeschlossen.html\";
# Geben Sie die Seite an, die angezeigt werden soll, wenn eine ABmeldung erfolgte
# Angabe mit http://
# Enter the page that should be shown of a recipients will be removed from you recipients list
# With http://
$UnsubscribeOKPage=\"http://www.nix-wie-weg.de/newsletter/abmeldung.html\";
# Geben Sie die Seite an, die angezeigt werden soll, wenn die E-Mail-Adresse aeusserlich nicht korrekt ist = Fehlerseite
# Angabe mit http://
# Enter the page that should be shown if an error ocurrs = email address not correct
# With http://
$ErrorPage=\"http://www.nix-wie-weg.de/newsletter/fehler.html\";