Seite 4 von 4
Verfasst: 03.03.2006 18:29
von BraveEagle
Dschaennie hat geschrieben:Hallo,
ich habe jetzt das von Markus67 vorgeschlagene
New Post E-Mail Notification
Allows one user to be notified when a new post is added to your phpBB.
eingebaut. Es funktioniert super bei der Erstellung neuer Themen, aber leider nicht bei neuen Posts. Hat da Jemand eine Lösung parat?? Mir reicht es wirklich völlig, wenn ausschließlich der Moderator benachrichtigt wird.
Sonnige Grüße
Dschaennie
Das würde mich auch interessieren.
@ Comander Poste mal deine includes/functions_post.php
Verfasst: 04.03.2006 00:41
von Comander
Hi,
hat sich schon erledigt.
Mir gings darum das Moderatoren eine Mail bei neuen Themen in ihrem Forum bekommen. Habe den "Forum Notification Mod" rausgenommen und den "Mod Post Notification Mod" installiert.
Jetzt klappt alles so wie es soll.
Gruß Stefan
Verfasst: 04.03.2006 00:43
von BraveEagle
Hast du ne Idee wie ich es hinbekomme, dass ich auch bei neuen Postings ne Mail bekomme (also nicht bei erstellen neuer Threads, da klappt das schon, sondern wenn eine Antwort geschrieben wird)
Verfasst: 04.03.2006 00:52
von Comander
hmm,
das ist bei mir so: Bei jedem Beitrag gibts ne Mail.
Was allerdings doof ist, ist wenn man selber eine Antwort geschrieben hat und dann den Haken bei "Bei Antworten benachrichtigen" gemacht hat.
In diesem Fall bekommt man nämlich 2 Mails.
Welche Mod-Version hast Du denn installiert?
Ich habe die Version 1.2.5
Verfasst: 04.03.2006 01:03
von BraveEagle
habe den hier:
Kannst du mir mal den Link zu dem Mod von dir posten!!
Code: Alles auswählen
###############################################
## Hack Title: New Post Email Notification
## Hack Version: 1.0
## Author: Pinyo Bhulipongsanon
## Description: Your forum send you an email whenever a new post is made.
## Compatibility: 2.0.0 - 2.0.13
##
## Installation Level: Easy
## Installation Time: 5 minutes
## Files To Edit: 1
## It is recommended that you list the file names here in
## alphabetical order, starting with folders. For example:
##
## includes/functions_post.php
##
## History:
## 1.0: first release (4-10-2005)
##
## Author Notes:
## Please visit www.greatnexus.com for more webmaster resources
##
## Support: http://www.phpbbhacks.com/forums
## Copyright: Copyright © 2005 New Post Email Notification v1.0 - Pinyo Bhulipongsanon
##
###############################################
## You downloaded this hack from phpBBHacks.com, the #1 source for phpBB related downloads.
## Please visit http://www.phpbbhacks.com/forums for support.
###############################################
##
###############################################
## This hack is released under the GPL License.
## This hack can be freely used, but not distributed, without permission.
## Intellectual Property is retained by the hack author(s) listed above.
###############################################
#
#-----[ Open ]------------------------------------------
#
includes/functions_post.php
#
#-----[ Find ]------------------------------------------
#
if ($mode == 'newtopic')
{
$topic_id = $db->sql_nextid();
#
#-----[ Add After ]------------------------------------------
#
# email first post - BEGIN
$forumURL = "http://www.yourdomain.com/forums";
$adminEmail = "admin@yourdomain.com";
$subject = "New Post Notification";
$headers = "From: Yourdomain.com Forums Admin <contact01@yourdomain.com>\r\n";
$message = "A new post was made to your forum, click on the link below to view the topic:\n\nLink: $forumURL/viewtopic.php?t=$topic_id";
@mail ( $adminEmail, $subject, $message, $headers);
# email first post - END
#
#-----[ Modify ]------------------------------------------
#
Change the variables to match your site information
#
#-----[ SAVE & CLOSE ALL FILES ]--------------------------
#
#End
Verfasst: 04.03.2006 01:23
von Comander