Hi,
I'm using still dev1.23 becaue dev 1.25 doesn't work on my server.
(1) where can I change the subject "newsletter verification to ..."of the newsletter verification E-Mail.
(2) Got a problem with dev 1.23 and the phenomen that the subscription prozess works fine and perfect in Netscape/Mozialla but not in MSIE. Who can help!
Best
Jens
Change "verification to ..." & Subscription ne
Re: Change "verification to ..." & Subscriptio
http://www.phpwcms.de/forum/viewtopic.php?p=62465#62465Both wrote:(1) where can I change the subject "newsletter verification to ..."of the newsletter verification E-Mail.
What version of phpWCMS are you using?
The "actual" text that you mention is in the file that I told you:
The "actual" text that you mention is in the file that I told you:
// phpMailer Class
$mail = new PHPMailer();
$mail->Mailer = $phpwcms['SMTP_MAILER'];
$mail->Host = $phpwcms['SMTP_HOST'];
$mail->Port = $phpwcms['SMTP_PORT'];
if($phpwcms['SMTP_AUTH']) {
$mail->SMTPAuth = 1;
$mail->Username = $phpwcms['SMTP_USER'];
$mail->Password = $phpwcms['SMTP_PASS'];
}
$mail->SMTPKeepAlive = false;
$mail->CharSet = $phpwcms["charset"];
$mail->IsHTML(0);
$mail->Subject = "newsletter verification to ".(($content["newsletter"]["email_name"]) ? $content["newsletter"]["email_name"] : $content["newsletter"]["email_address"]);
$mail->Body = $content["newsletter"]["mailtext"];
Hi DeXXus,
Thanks a lot. I found it in Line 134.
You made me happy this morning!
Best wishes
Both
Thanks a lot. I found it in Line 134.
Code: Select all
$mail->Subject = "newsletter verification to ".(($content["newsletter"]["email_name"]) ? $content["newsletter"]["email_name"] : $content["newsletter"]["email_address"]);
Best wishes
Both