IMP_Prefs_Identity::saveSentmail PHP Méthode

saveSentmail() public méthode

Returns true if the mail should be saved and the user is allowed to.
public saveSentmail ( integer $ident = null ) : boolean
$ident integer The identity to retrieve the setting from.
Résultat boolean True if the sent mail should be saved.
    public function saveSentmail($ident = null)
    {
        return $GLOBALS['injector']->getInstance('IMP_Factory_Imap')->create()->access(IMP_Imap::ACCESS_FOLDERS) ? $this->getValue('save_sent_mail', $ident) : false;
    }