module/Applications/src/Applications/Mail/StatusChange.php 1 location
|
@@ 91-100 (lines=10) @@
|
| 88 |
|
* |
| 89 |
|
* @return string |
| 90 |
|
*/ |
| 91 |
|
protected function getInformalSalutation() |
| 92 |
|
{ |
| 93 |
|
$contact = $this->application->getContact(); |
| 94 |
|
$name = $contact->getDisplayName(false); |
| 95 |
|
|
| 96 |
|
$salutation = $this->getTranslator() |
| 97 |
|
->translate('Hello %s'); |
| 98 |
|
|
| 99 |
|
return sprintf($salutation, $name); |
| 100 |
|
} |
| 101 |
|
|
| 102 |
|
/** |
| 103 |
|
* Gets the title of the job posting |
module/Applications/src/Applications/Mail/Confirmation.php 1 location
|
@@ 139-148 (lines=10) @@
|
| 136 |
|
/** |
| 137 |
|
* @return string |
| 138 |
|
*/ |
| 139 |
|
protected function getInformalSalutation() |
| 140 |
|
{ |
| 141 |
|
$contact = $this->application->getContact(); |
| 142 |
|
$name = $contact->getDisplayName(); |
| 143 |
|
|
| 144 |
|
$salutation = $this->getTranslator() |
| 145 |
|
->translate('Hello %s'); |
| 146 |
|
|
| 147 |
|
return sprintf($salutation, $name); |
| 148 |
|
} |
| 149 |
|
|
| 150 |
|
/** |
| 151 |
|
* @return mixed |