Posts by Otávio C A Serra • 21 points
3 posts
-
2
votes2
answers2436
viewsA: SMTP Debug with Phpmailer
To debug in Phpmailer (version 5 and 6), you need to set the $Smtpdebug attribute of the Phpmailer instance after instantiation like this: $mail = new PHPMailer(true); ... $mail->SMTPDebug =…
-
0
votes1
answer44
viewsA: PHP JWT (JSON Web Token) with library-free RSA SSL signature
UPDATING: I made my own solution using other examples along the way. Below we have 3 use cases and the specific Phps codes for whom you want to use: Create public and private RSA keys to sign JWT…
-
-2
votes1
answer44
viewsQ: PHP JWT (JSON Web Token) with library-free RSA SSL signature
Does anyone know any PHP solution for using JWT (JSON Web Token) with RSA SSL subscription without using any library? I tried both to find solutions without library or using Composer. But I couldn’t…