How to set the --no-mailer option when creating an ash_phoenix project

When creating a phenix project, you could set the --no-mailer option.

> mix phx.new my_app --no-mailer

I wonder if there is a way to set this option when creating an ash_phoenix project.
If I simply add the --no-mailer option as below, an error occurs.

> mix igniter.new my_app --install ash,ash_phoenix,ash_postgres --with phx.new --no-mailer

** (Mix) Could not invoke task "igniter.install": 1 error found!
--no-mailer : Unknown option
mix igniter.new my_app --install ash,ash_phoenix,ash_postgres --with phx.new --with-args="--no-mailer"

2 Likes