1. Go to this page and download the library: Download maatify/mailer library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
maatify / mailer example snippets
namespace App\Assist\Mailer;
class StgMail
{
public const stg_mailer_url = 'YOUR STG SENDER';
}
namespace App\Assist\Config;
class MailerConfig
{
private static self $instance;
public static function obj(string $language_short_code = ''): self
{
if (empty(self::$instance)) {
self::$instance = new self($language_short_code);
}
return self::$instance;
}
public function __construct(string $language_short_code = '')
{
if (empty($language_short_code)) {
$language_short_code = 'en';
}
if(in_array($language_short_code, ['en', 'ar'])){
$this->language_short_code = $language_short_code;
}
}
private string $language_short_code = 'en';
public function subjectTempPass(): string
{
return match ($this->language_short_code) {
'ar' => 'الرقم السري المؤقت الخاص بك',
default => 'Your Temporary Password',
};
}
public function subjectResetPass(): string
{
return match ($this->language_short_code) {
'ar' => 'تغيير كلمة المرور',
default => 'Reset Password',
};
}
public function subjectConfirmMail(): string
{
return match ($this->language_short_code) {
'ar' => 'تأكيد البريد الإلكتروني',
default => 'Confirm Mail',
};
}
public function subjectOTPCode(): string
{
return match ($this->language_short_code) {
'ar' => 'الرقم السري المتغير',
default => 'OTP Code',
};
}
public function subjectConfirmCode(): string
{
return match ($this->language_short_code) {
'ar' => 'رمز التحقق',
default => 'Confirm Code',
};
}
}
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.