fix missing class in NewUserMailHelper and static code analysis errors

Signed-off-by: Bennet Becker <dev@bennet.cc>
pull/35876/head
Bennet Becker 1 year ago
parent 5a1cc8de9b
commit c8bde160cd
No known key found for this signature in database
GPG Key ID: B4C66D4902D1FA86

@ -35,7 +35,7 @@ use OCP\IConfig;
use OCP\IURLGenerator;
use OCP\IUser;
use OCP\L10N\IFactory;
use OCP\Mail\Header\AutoSubmitted;
use OCP\Mail\Headers\AutoSubmitted;
use OCP\Mail\IEMailTemplate;
use OCP\Mail\IMailer;
use OCP\Security\ICrypto;

@ -39,7 +39,7 @@ final class AutoSubmitted {
/**
* Name of the Header as used in the final message later
*
*
* @var string
* @since 26.0.0
*/

@ -98,7 +98,7 @@ interface IMessage {
* Add the Auto-Submitted header to the email, preventing most automated
* responses to automated messages.
*
* @param AutoSubmitted::VALUE_* $value (one of AutoSubmitted::VALUE_NO, AutoSubmitted::VALUE_AUTO_GENERATED, AutoSubmitted::VALUE_AUTO_REPLIED)
* @param Headers\AutoSubmitted::VALUE_* $value (one of AutoSubmitted::VALUE_NO, AutoSubmitted::VALUE_AUTO_GENERATED, AutoSubmitted::VALUE_AUTO_REPLIED)
* @return IMessage
* @since 26.0.0
*/

Loading…
Cancel
Save