-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathext_emconf.php
executable file
·52 lines (48 loc) · 1.75 KB
/
ext_emconf.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<?php
/**
*
* This file is part of the "cy_send_mails" Extension for TYPO3 CMS.
*
* For the full copyright and license information, please read the
* LICENSE.txt file that was distributed with this source code.
*
* (c) 2024 C. Gogolin <[email protected]>
*
*/
$EM_CONF[$_EXTKEY] = [
'title' => 'Send a mail to other frontend user or frontend user groups.',
'description' => 'This extension allows frontend users to write emails to other
frontend users without them knowing their email address. This extension is specifically
for a manageable group of people. For example a club. The members can easily send emails
to each other. ',
'category' => 'plugin',
'author' => 'C. Gogolin',
'author_email' => '[email protected]',
'state' => 'stable',
'uploadfolder' => 0,
'createDirs' => '',
'clearCacheOnLoad' => 1,
'version' => '2.1.0',
'constraints' => [
'depends' => [
'typo3' => '12.4.0-12.4.99',
'bootstrap_package' => '14.0.0-14.0.99'
],
'conflicts' => [],
'suggests' => []
]
];
/** ---- CHANGELOG ----------
2.1.0 :: ADD: You can add a suffix to the sender name.
2.0.2 :: FIX: You can send emails with and without attachments
2.0.1 :: FIX: You can send emails with attachments
2.0.0 :: UPD: to TYPO3 12.4.x
1.2.1 :: MTN: Extract the session form key handling in a service.
1.2.0 :: Fix: Fix the plugin configuration / registry
1.1.0 :: ADD: Add a simulation mode and a back button.
1.0.4 :: Fix: Better handling of unknown receiver ids.
1.0.3 :: Fix: translation texts in the email templates
1.0.2 :: Update: Bootstrap dependencies to version 13.0.* / add own jQuery lib
1.0.1 :: Add a migration wizzard
1.0.0 :: Initial
// ---- CHANGELOG ---------- */