Additional parameters in Email config
@convex-dev/auth/providers/Email to send verification emails and want to support multiple languages (e.g., 'en', 'ko') based on user settings. However, the current sendVerificationRequest doesn't accept custom parameters like customData to pass locale info, forcing me to hardcode templates (e.g., 'en').#### Current Code
#### Requested Feature
Add support for passing
customData (e.g., { locale: 'ko' }) to sendVerificationRequest so I can dynamically select email templates based on locale.#### Example
#### Why?
- Enables multi-language email support.
- Increases flexibility for custom email logic.
#### Current Limitation
-
sendVerificationRequest only takes { identifier, provider, token }, no way to pass locale.