mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-02-24 14:57:26 +08:00
add excel multirow email list parser
This commit is contained in:
parent
0bba7146a6
commit
e03dfef8b3
5 changed files with 53 additions and 0 deletions
20
plugins/excel-multirow-maillist-parser/LICENCE
Normal file
20
plugins/excel-multirow-maillist-parser/LICENCE
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
The MIT License (MIT)
|
||||||
|
|
||||||
|
Copyright (c) 2013 RainLoop Team
|
||||||
|
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
||||||
|
this software and associated documentation files (the "Software"), to deal in
|
||||||
|
the Software without restriction, including without limitation the rights to
|
||||||
|
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
||||||
|
the Software, and to permit persons to whom the Software is furnished to do so,
|
||||||
|
subject to the following conditions:
|
||||||
|
|
||||||
|
The above copyright notice and this permission notice shall be included in all
|
||||||
|
copies or substantial portions of the Software.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
||||||
|
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
||||||
|
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
||||||
|
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
||||||
|
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
1
plugins/excel-multirow-maillist-parser/README
Normal file
1
plugins/excel-multirow-maillist-parser/README
Normal file
|
@ -0,0 +1 @@
|
||||||
|
Add ability to paste multi row email addresses from excel.
|
1
plugins/excel-multirow-maillist-parser/VERSION
Normal file
1
plugins/excel-multirow-maillist-parser/VERSION
Normal file
|
@ -0,0 +1 @@
|
||||||
|
0.1
|
13
plugins/excel-multirow-maillist-parser/index.php
Normal file
13
plugins/excel-multirow-maillist-parser/index.php
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
class ParseExcelListPlugin extends \RainLoop\Plugins\AbstractPlugin
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public function Init()
|
||||||
|
{
|
||||||
|
$this->addJs('js/parse_excel_list.js'); // add js file
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
|
@ -0,0 +1,18 @@
|
||||||
|
|
||||||
|
$(function () {
|
||||||
|
|
||||||
|
//selectors
|
||||||
|
var inputs = '.popups .inputosaurus-input input[type="text"]:first, \
|
||||||
|
.popups .cc-row input[type="text"]:first, \
|
||||||
|
.popups .bcc-row input[type="text"]:first';
|
||||||
|
|
||||||
|
//bind function
|
||||||
|
$(document).on( 'keyup', inputs, function(){
|
||||||
|
var t = $(this);
|
||||||
|
var v = t.val();
|
||||||
|
if( v != "" && v.match(/@/ig).length >= 2 ){
|
||||||
|
t.val( t.val().replace(/\n| /ig,",") )
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
});
|
Loading…
Reference in a new issue