mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-07-13 03:27:39 +03:00
fix name addSMimeEncrypted
This commit is contained in:
parent
10ec90435d
commit
a22ae5fcf4
2 changed files with 2 additions and 2 deletions
|
|
@ -225,7 +225,7 @@ class Part
|
||||||
$this->addEncrypted($sEncrypted, 'application/pgp-encrypted');
|
$this->addEncrypted($sEncrypted, 'application/pgp-encrypted');
|
||||||
}
|
}
|
||||||
|
|
||||||
public function addSMimepEncrypted(string $sEncrypted)
|
public function addSMimeEncrypted(string $sEncrypted)
|
||||||
{
|
{
|
||||||
$this->addEncrypted($sEncrypted, 'application/pkcs7-mime');
|
$this->addEncrypted($sEncrypted, 'application/pkcs7-mime');
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1194,7 +1194,7 @@ trait Messages
|
||||||
}
|
}
|
||||||
*/
|
*/
|
||||||
$sEncrypted = $SMIME->encrypt($tmp, $aCertificates);
|
$sEncrypted = $SMIME->encrypt($tmp, $aCertificates);
|
||||||
$oMessage->addSMimepEncrypted($sEncrypted);
|
$oMessage->addSMimeEncrypted($sEncrypted);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue