Andrew Halliwell

Results 13 comments of Andrew Halliwell

Try using the fork of Guzzle in my repositories. I had a similar issue, so I modified Guzzle to not have any conflicts. https://github.com/alifeinbinary/guzzle @wtatters

What I have: Manjaro Linux kernel 5.4 Intel 4790K 16GB 1600Mhz RAM Radeon RX 570 No joy or gamepad attached. What I've tried: - Re-install CS:Go - downgrade to LTS...

Please. It's the only feature it lacks but I still love using it. +1

If I had to guess, [packages/api-mailer/src/crud/transport/onTransportBeforeSend.ts#L13](https://github.com/webiny/webiny-js/blob/b609e37fc81bc24ef23c436d4d1849f0be6f9e70/packages/api-mailer/src/crud/transport/onTransportBeforeSend.ts#L13) Should be: ``` .object({ to: zod.array(requiredEmail).optional(), from: zod.string().email().optional() envelope: { from: zod.string().email().optional(), to: zod.array(requiredEmail).optional() }, subject: requiredString.max(1024).min(2), cc: zod.array(requiredEmail).optional(), bcc: zod.array(requiredEmail).optional(), replyTo: zod.string().email().optional(), text:...

Here's a slightly more robust example with proper logic for the replyTo field depending on whether the Message is a Notification or Thank You ```js import nodemailer from "nodemailer"; import...

+1. Just installed the extension and this is the first feature I looked for.

@MartyG-RealSense I've just built from tag v2.56.1 on an Intel MacPro and encountered the same crash. My MacOS crash report is saying that the crash is occurring when libusb_get_device_list is...

Format your table items and use useEffect to initialise things in the right order like this. ```js // Loading the console useEffect(() => { function handleCallback(logItems: Message[]) { setLogs(logItems); }...

I submitted a PR #137 to hopefully resolve this issue. Hopefully it gets merged after ironing out any kinks.

@mrwebninja Have you... 1. Cloned this repo and branch 2. Copied and replaced the files from templates/ecommerce into a newly created blank Payload project 3. Installed the dependencies, initialised a...