mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-09-11 15:44:43 +08:00
23 lines
508 B
PHP
23 lines
508 B
PHP
<?php
|
|
|
|
class SendSaveInPlugin extends \RainLoop\Plugins\AbstractPlugin
|
|
{
|
|
// use \MailSo\Log\Inherit;
|
|
|
|
const
|
|
NAME = 'Send Save In',
|
|
AUTHOR = 'SnappyMail',
|
|
URL = 'https://snappymail.eu/',
|
|
VERSION = '0.1',
|
|
RELEASE = '2024-10-08',
|
|
REQUIRED = '2.38.1',
|
|
CATEGORY = 'General',
|
|
LICENSE = 'MIT',
|
|
DESCRIPTION = 'When composing a message, select the save folder';
|
|
|
|
public function Init() : void
|
|
{
|
|
// $this->UseLangs(true); // start use langs folder
|
|
$this->addJs('savein.js');
|
|
}
|
|
}
|