Page 1 of 1

Change "verification to ..." & Subscription ne

Posted: Wed 5. Apr 2006, 16:09
by Both
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

Re: Change "verification to ..." & Subscriptio

Posted: Wed 5. Apr 2006, 21:20
by DeXXus
Both wrote:(1) where can I change the subject "newsletter verification to ..."of the newsletter verification E-Mail.
http://www.phpwcms.de/forum/viewtopic.php?p=62465#62465

Posted: Thu 6. Apr 2006, 09:50
by Both
Hi,
thanks for the quick answer. You mean in the file "cnt12.article.inc.php" I can change the subject of "verification to" in de verification email.

But where the hell is this file. I can't find it.

The "verfication to" is not in
act_newsletter.php nor in act_sendnewsletter.php

Thx

Both

Posted: Thu 6. Apr 2006, 10:54
by DeXXus
What version of phpWCMS are you using?
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"];

Posted: Thu 6. Apr 2006, 15:39
by Both
Hi,
thanks for the advice. But where do I find it?
Using dev 1.2.3
Greetings

Both

Posted: Thu 6. Apr 2006, 20:15
by DeXXus
"/include/inc_front/content/cnt12.article.inc.php"

Posted: Fri 7. Apr 2006, 09:46
by Both
Hi DeXXus,

Thanks a lot. I found it in Line 134. :D :D

Code: Select all

$mail->Subject			= "newsletter verification to ".(($content["newsletter"]["email_name"]) ? $content["newsletter"]["email_name"] : $content["newsletter"]["email_address"]);
You made me happy this morning!

Best wishes

Both

Posted: Fri 7. Apr 2006, 12:01
by DeXXus
:idea: :D 8) :!: