
Code: Selecteer alles
##############################################################
## MOD Title: Include board e-mail sig on all user e-mails
## MOD Author: Duvelske
## MOD Description: The title says it all. This will place the
## sig you define in the admin config area at
## the bottom of all e-mails sent from the
## user profile links anywhere on the forum.
## MOD Version: 1.0.0
##
## Installation Level: (easy)
## Installation Time: A few minutes
## Files To Edit: includes\usercp_email.php
## language\lang_english\email\profile_send_email.tpl
## Included Files: (n/a)
##############################################################
## For Security Purposes, Please Check: http://www.vitrax.vze.com for the
## latest version of this MOD. Downloading this MOD from other sites could cause malicious code
## to enter into your phpBB Forum. As such, phpBB will not offer support for MOD's not offered
## in our MOD-Database
##############################################################
## Author Notes: While you have profile_send_email.tpl open
## you can customize the default message.
##############################################################
## Before Adding This MOD To Your Forum,
## You Should Back Up All Files Related To This MOD
##############################################################
#
#-----[ OPEN ]------------------------------------------
#
includes\usercp_email.php
#
#-----[ FIND ]------------------------------------------
#
'MESSAGE' => $message)
#
#-----[ REPLACE WITH ]------------------------------------------
#
'MESSAGE' => $message,
'BOARD_EMAIL_SIG' => $board_config['board_email_sig'])
#
#-----[ FIND ]------------------------------------------
#
'MESSAGE' => $message)
#
#-----[ REPLACE WITH ]------------------------------------------
#
'MESSAGE' => $message,
'BOARD_EMAIL_SIG' => $board_config['board_email_sig'])
#
#-----[ OPEN ]------------------------------------------
#
language\lang_english\email\profile_send_email.tpl
#
#-----[ FIND ]------------------------------------------
#
{MESSAGE}
#
#-----[ AFTER, ADD ]------------------------------------------
#
~~~~~~~~~~~~~~~~~~~~~~~~~~~
{BOARD_EMAIL_SIG}
#
#-----[ SAVE/CLOSE ALL FILES ]------------------------------------------
#
# EoM