Peter Ocansey
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?
Resolved by another pr
@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...