Peter Ocansey

Results 5 comments of Peter Ocansey

Example for JS cc @Agathe-Brusset ``` import crypto from 'crypto' const computedSignature = crypto .createHmac('sha256', signingSecret) .update(requestContent, 'utf8') .digest('hex'); return crypto.timingSafeEqual( Buffer.from(signature, 'hex'), Buffer.from(computedSignature, 'hex') ); ```

@kavanpancholi I think we can close this one right?

@ThanasisMpalatsoukas PHP8+ should work, what issues did you face while using PHP8.2 with SDK?

@vresende no need to pass a view when using template, you can return instance of Content without the views. ``` $to = Arr::get($this->to, '0.address'); // Additional options for MailerSend API...