-1

I want to integrate Griddler without a Sendgrid account. Is this possible?

Caleb Hearth
  • 3,315
  • 5
  • 30
  • 44
Vijay Chouhan
  • 4,613
  • 5
  • 29
  • 35

1 Answers1

1

Griddler works by accepting POST requests to a special path and parsing the parameters into an object that you can operate on.

The parameter mapping happens in adapters, a byproduct of which is that you can see all of the supported services in the directory I linked.

If none of those adapters work for your needs, feel free to write your own.

So no, you don't need a Sendgrid account to use Griddler, but you do need some sort of service that POSTs to your application in a way that Griddler or an adapter can understand.

Caleb Hearth
  • 3,315
  • 5
  • 30
  • 44