Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 216.73.216.44
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
3 /
werneckbh /
qr-code /
src /
QR_Code /
Types /
Delete
Unzip
Name
Size
Permission
Date
Action
vCard
[ DIR ]
drwxr-xr-x
2018-02-04 09:00
QR_CalendarEvent.php
3.35
KB
-rw-r--r--
2018-02-04 09:00
QR_EmailMessage.php
1.07
KB
-rw-r--r--
2018-02-04 09:00
QR_Phone.php
751
B
-rw-r--r--
2018-02-04 09:00
QR_Sms.php
861
B
-rw-r--r--
2018-02-04 09:00
QR_Text.php
678
B
-rw-r--r--
2018-02-04 09:00
QR_Url.php
800
B
-rw-r--r--
2018-02-04 09:00
QR_VCard.php
2.91
KB
-rw-r--r--
2018-02-04 09:00
QR_WiFi.php
1.33
KB
-rw-r--r--
2018-02-04 09:00
QR_meCard.php
1.1
KB
-rw-r--r--
2018-02-04 09:00
Save
Rename
<?php namespace QR_Code\Types; use QR_Code\Contracts\CodeType; use QR_Code\Util\AbstractGenerator; /** * Class QR_EmailMessage * * QR Code Generator for PHP is distributed under MIT * Copyright (C) 2018 Bruno Vaula Werneck <brunovaulawerneck at gmail dot com> * * @package QR_Code\Types */ class QR_EmailMessage extends AbstractGenerator implements CodeType { protected $email; protected $message; protected $subject; /** * Email Message QR Code * * @param string $email Email address * @param string $message Email Message Body * @param string $subject Email subject */ public function __construct(string $email, string $message, string $subject) { $this->email = $email; $this->message = $message; $this->subject = $subject; } /** * Get Formatted QR Code String * * @return string */ public function getCodeString () : string { return "MATMSG:TO:{$this->email};SUB:{$this->subject};BODY:{$this->message};;"; } }