heyooo
heyooo
WWasp-lang
Created by heyooo on 11/30/2023 in #đŸ™‹questions
trouble setting up wasp-ai
Thank you. Yes, I have been running Mage in the CLI, and it runs fine. I'm more interested in the process bits, and how that's rolled out in a scenario like this than getting an AI to generate code I want personally. I have all my oauth app bits created already, and my env vars are passing to the app, but it's not going anywhere because that end isn't built out for distribution. That's okay. That was why I asked. No sense in reinventing the wheel, and the longer I wait, the better the software gets anyway. Thanks for the ping. I do appreciate the reply. :wasplang:
3 replies
WWasp-lang
Created by Gwaggli on 11/30/2023 in #đŸ™‹questions
Schedule email with sendgrid
You’ll probably want to do it the easy way and just replace that function with the twilio node package. https://docs.sendgrid.com/for-developers/sending-email/quickstart-nodejs
51 replies
WWasp-lang
Created by Gwaggli on 11/30/2023 in #đŸ™‹questions
Schedule email with sendgrid
looks likethe docs you mention explain that you should place: x-smtpapi: {"send_at":"[when you want to send the mail]"} before the "from:" line in that email like this: import { emailSender } from "@wasp/email/index.js"; // In some action handler... const info = await emailSender.send({ x-smtpapi: {"send_at":"[when you want to send the mail]"} from: { name: "John Doe", email: "[email protected]", }, to: "[email protected]", subject: "Saying hello", text: "Hello world", html: "Hello <strong>world</strong>", });
51 replies
WWasp-lang
Created by Cash on 12/1/2023 in #đŸ™‹questions
Help with node version
IDK if it's the SOP, but you can just: install nvm (looks like you're on linux: https://github.com/nvm-sh/nvm) restart your terminal session and run: nvm use 18.12 then check your version of node with: nvm -v which should give you: Now using node v18.12.0 if that goes well, you're ready to rock.
3 replies