mailfunktion funktioniert nicht
Verfasst: So 19. Okt 2008, 22:29
				
				ich habe folgende einstellungen vorgenommen - es funktioniert jedoch nicht - ich möchte php-mailer verwenden, wie das auch joomla bei mir macht - hat jemand einen tip für mich???:
classes/class.settings.php
tools/cronjob_advanced.php
			classes/class.settings.php
Code: Alles auswählen
 $this->dateTimeFormat = $lang->get(47); // quote % to %%
        // your email settings
        $this->mailFrom = "root@localhost";
        $this->mailFromName = "root - calender";
        $this->mailWordWrap = 0;
        $this->mailSMTP = FALSE;  // sending mails by PHP type FALSE
        $this->smtpHost = "localhost";
        $this->smtpPort = 25;
        $this->smtpAuthentication = FALSE;
        $this->smtpUsername = "xxx";
        $this->smtpPassword = "xxx";Code: Alles auswählen
/*
 * cronjob_advanced
 * every user get the same email
 * see class.settings.php for furcy informations
 *
 * the cronjob-function is for getting a remindermail
 *
 */
// path to script directory
$path = "../";
// debug: sending no mails
define( "DEBUG", FALSE );