Page MenuHomestyx hydra

PhabricatorMailgunConfigOptions.php
No OneTemporary

PhabricatorMailgunConfigOptions.php

<?php
final class PhabricatorMailgunConfigOptions
extends PhabricatorApplicationConfigOptions {
public function getName() {
return pht("Integration with Mailgun");
}
public function getDescription() {
return pht("Configure Mailgun integration.");
}
public function getOptions() {
return array(
$this->newOption('mailgun.domain', 'string', null)
->setLocked(true)
->setDescription(
pht(
'Mailgun domain name. See https://mailgun.com/cp/domains'))
->addExample('mycompany.com', 'Use specific domain'),
$this->newOption('mailgun.api-key', 'string', null)
->setMasked(true)
->setDescription(pht('Mailgun API key.')),
);
}
}

File Metadata

Mime Type
text/x-php
Expires
Wed, Nov 5, 3:41 PM (1 h, 16 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
315907
Default Alt Text
PhabricatorMailgunConfigOptions.php (730 B)

Event Timeline