mirror of
https://github.com/the-djmaze/snappymail.git
synced 2024-11-15 12:15:20 +08:00
14 lines
320 B
PHP
14 lines
320 B
PHP
<?php
|
|
|
|
namespace Plugins\Example;
|
|
|
|
class ContactSuggestions implements \RainLoop\Providers\Suggestions\ISuggestions
|
|
{
|
|
public function Process(\RainLoop\Model\Account $oAccount, string $sQuery, int $iLimit = 20) : array
|
|
{
|
|
return array(
|
|
array($oAccount->Email(), ''),
|
|
array('email@domain.com', 'name')
|
|
);
|
|
}
|
|
}
|