FBIagent
Erfahrenes Mitglied
Moin,
ich hab mir mal die email sachen von Dennis Wronka angeschaut und folegndes
zusammengefrimelt:
index.php
emailtxt.class.php
Ich bekomme Missing argument 1 ... Missed argument 4 for email::__construct()
Soweit ich das sehe habe ich die argumente doch angegeben oder wie sehe ich das.
Oder ran könnte das noch liegen?
THX im Vorraus
MFG FBIagent
ich hab mir mal die email sachen von Dennis Wronka angeschaut und folegndes
zusammengefrimelt:
index.php
PHP:
<?php
include "./email.class.php";
include "./smtpconnection.class.php";
include "./emailtxt.class.php";
$account_name = "blabla";
$activation_key = "";
$account_mail = "blabla@blabla.bla";
$emtxt = new emailtxt;
$em = new email;
$smtp = new smtpconnection;
emtxt.init();
emtxt.addln("Sie haben einen spiel Account erstellt.");
emtxt.addln("Account Name: $account_name");
emtxt.addln("Aktivier. Code: $activation_key");
emtxt.addln();
emtxt.addln("Um Ihren Account zu aktivieren besuchen sie bitte folgende Seite.");
emtxt.addln("Dort -Account Namen- und oben angegeben -Aktivier. Code- eingeben.");
emtxt.addln("http://blabla.blabla.bla/bla_bla");
emtxt.addln();
emtxt.addln();
emtxt.addln("P.S.: Wenn Sie nichts von uns angefordert haben ignorieren sie");
emtxt.add("diese E-Mail ganz einfach.");
em.__construct("blabla@blalba.bla",$account_mail,"Aktivierung des spiel Accounts",emtxt.get());
smtp.__construct();
smtp.sendmail(em.composemail()))
die();
?>
emailtxt.class.php
PHP:
<?php
class emailtxt
{
private $text;
public function init()
{
$this->text="";
}
public function add($txtadd)
{
if($txtadd != "")
$this->text.=$txtadd;
}
public function addln($txtadd = "\r\n")
{
if($txtadd != "")
{
if($txtadd == "\r\n")
$this->text.="\r\n";
else
$this->text.=$txtadd."\r\n";
}
}
public function get()
{
return $this->text;
}
}
?>
Ich bekomme Missing argument 1 ... Missed argument 4 for email::__construct()
PHP:
em.__construct("blabla@blalba.bla",$account_mail,"Aktivierung des spiel Accounts",emtxt.get());
Soweit ich das sehe habe ich die argumente doch angegeben oder wie sehe ich das.
Oder ran könnte das noch liegen?
THX im Vorraus
MFG FBIagent