Change "verification to ..." & Subscription ne

Get help with installation and running phpwcms here. Please do not post bug reports or feature requests here.
Post Reply
Both
Posts: 32
Joined: Thu 3. Mar 2005, 18:13

Change "verification to ..." & Subscription ne

Post 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
User avatar
DeXXus
Posts: 2168
Joined: Fri 28. Nov 2003, 06:20
Location: USA - Florida

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

Post 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
Both
Posts: 32
Joined: Thu 3. Mar 2005, 18:13

Post 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
User avatar
DeXXus
Posts: 2168
Joined: Fri 28. Nov 2003, 06:20
Location: USA - Florida

Post 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"];
Both
Posts: 32
Joined: Thu 3. Mar 2005, 18:13

Post by Both »

Hi,
thanks for the advice. But where do I find it?
Using dev 1.2.3
Greetings

Both
User avatar
DeXXus
Posts: 2168
Joined: Fri 28. Nov 2003, 06:20
Location: USA - Florida

Post by DeXXus »

"/include/inc_front/content/cnt12.article.inc.php"
Both
Posts: 32
Joined: Thu 3. Mar 2005, 18:13

Post 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
User avatar
DeXXus
Posts: 2168
Joined: Fri 28. Nov 2003, 06:20
Location: USA - Florida

Post by DeXXus »

:idea: :D 8) :!:
Post Reply