Add support for mailgun API endpoint (#3364)
This commit is contained in:
parent
b79d6e9e64
commit
75d254a6a4
4 changed files with 9 additions and 0 deletions
|
@ -37,6 +37,7 @@ class EmailSettingsCommand extends Command
|
|||
{--encryption=}
|
||||
{--host=}
|
||||
{--port=}
|
||||
{--endpoint=}
|
||||
{--username=}
|
||||
{--password=}';
|
||||
|
||||
|
@ -140,6 +141,11 @@ class EmailSettingsCommand extends Command
|
|||
trans('command/messages.environment.mail.ask_mailgun_secret'),
|
||||
$this->config->get('services.mailgun.secret')
|
||||
);
|
||||
|
||||
$this->variables['MAILGUN_ENDPOINT'] = $this->option('endpoint') ?? $this->ask(
|
||||
trans('command/messages.environment.mail.ask_mailgun_endpoint'),
|
||||
$this->config->get('services.mailgun.endpoint')
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue