Skip to content

Commit 3f9bf97

Browse files
committed
updated plugin.xml and config.xml
1 parent ae7de8b commit 3f9bf97

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

Resources/config.xml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@
1212
<label lang="de">CSV Exporte an E-Mail Adresse versenden</label>
1313
<label lang="en">Send CSV Exports to an E-Mail Address</label>
1414
<value/>
15+
<description lang="de">Mehrere Empfänger kommasepariert angeben</description>
16+
<description lang="en">Enter multiple recipients comma separated</description>
1517
</element>
1618
<element type="text">
1719
<name>csv_field_separator</name>

Subscriber/Backend/QueryManagerCron.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ public function runQueryManagerCron()
114114
if(!empty($mailRecipient)){
115115
$mail = clone $this->container->get('mail');
116116
$mail->setFrom($this->container->get('config')->get('mail'));
117-
$mail->addTo(array_map('trim', explode(",", $mailRecipient)));
117+
$mail->addTo(array_map('trim', explode(',', $mailRecipient)));
118118
$mail->setSubject($cronJob['name']);
119119
$mail->setBodyText($rowCount . ' ' . $snippets->get('rowsAffected', 'Reihen betroffen'));
120120
$mail->createAttachment(

plugin.xml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,16 @@
33
<label lang="de">Query Manager</label>
44
<label lang="en">Query Manager</label>
55

6-
<version>2.0.3</version>
6+
<version>2.0.4</version>
77
<link>http://www.webmatch.de</link>
88
<author>Webmatch GmbH</author>
99
<compatibility minVersion="5.2.0" />
1010

11+
<changelog version="2.0.4">
12+
<changes lang="de">Mehrere E-Mail-Adressen als Empfänger in Cron-Jobs</changes>
13+
<changes lang="en">Add support for multiple recipients in cron-jobs</changes>
14+
</changelog>
15+
1116
<changelog version="2.0.3">
1217
<changes lang="de">Abweichende E-Mail Adresse für Cron-Job ergänzt</changes>
1318
<changes lang="en">Deviant e-mail address for cron-job added</changes>

0 commit comments

Comments
 (0)