Feature #4500
New Message notification to include content
| Status: | Resolved | Start date: | 2009-09-08 | |
|---|---|---|---|---|
| Priority: | Should have | Due date: | ||
| Assignee: | - | % Done: | 100% |
|
| Category: | Messaging | |||
| Target version: | 1.9.0 | Estimated time: | 0.50 hour | |
| Votes: | 0 |
Description
Same as Feature #4257. But include content of personal message in the email notification.
Associated revisions
[+FEATURE] PM notifications contain the message text (fixes #4500)
[+FEATURE] PM notifications contain the message text (fixes #4500)
git-svn-id: https://svn.typo3.org/TYPO3v4/Extensions/mm_forum/trunk@29221 735d13b6-9817-0410-8766-e36946ffe9aa
History
Updated by Martin Helmich over 3 years ago
- Category set to Messaging
- Status changed from New to Accepted
- Priority changed from Could have to Should have
- Target version set to 1.9.0
- Estimated time set to 0.50
Updated by Chris Paige over 3 years ago
This is actually pretty easy in pi3...
Change this in function message_write
$marker = array(
'###USERNAME###' => $row[tx_mmforum_pi1::getUserNameField()],
'###PMLINK###' => tx_mmforum_pi1::getAbsUrl($msgLink),
'###SITENAME###' => $conf['siteName'],
);
into this...
$marker = array(
'###USERNAME###' => $row[tx_mmforum_pi1::getUserNameField()],
'###PMLINK###' => tx_mmforum_pi1::getAbsUrl($msgLink),
'###SITENAME###' => $conf['siteName'],
'###MESSAGE###' => $this->shield($message),
'###SUBJECT###' => $this->pi_getLL('messageReplySubjectPrefix').$subject,
'###FROM###' => $GLOBALS['TSFE']->fe_user->user[tx_mmforum_pi1::getUserNameField()]
);
Then adjust template as desired.
Updated by Martin Helmich over 3 years ago
- Status changed from Accepted to Resolved
- % Done changed from 0 to 100
Applied in changeset r29221.