From 282367ea52940a1206d5d51a9fcd39f0407136b9 Mon Sep 17 00:00:00 2001 From: James Atkinson Date: Mon, 13 Aug 2001 03:16:35 +0000 Subject: Implmented the emailer class everywhere it needs it (just registration and private message notification so far) git-svn-id: file:///svn/phpbb/trunk@845 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/includes/emailer.php | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) (limited to 'phpBB/includes') diff --git a/phpBB/includes/emailer.php b/phpBB/includes/emailer.php index 57895a6f1f..ba873a3926 100755 --- a/phpBB/includes/emailer.php +++ b/phpBB/includes/emailer.php @@ -1,6 +1,6 @@ use_smtp = $use_smtp; $this->tpl_file = NULL; - $this->sddress = NULL; + $this->address = NULL; $this->msg = ""; $this->mimeOut = ""; } + // + // Resets all the data (address, template file, etc etc to default + // + function reset() + { + $this->tpl_file = ""; + $this->address = ""; + $this->msg = ""; + $this->memOut = ""; + } + // // Sets an email address to send to // -- cgit v1.2.1