X7ROOT File Manager
Current Path:
/home/prisjneg/public_html/vendor/laravel/framework/src/Illuminate/Mail
home
/
prisjneg
/
public_html
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Mail
/
📁
..
📄
Attachment.php
(4.92 KB)
📁
Events
📄
LICENSE.md
(1.05 KB)
📄
MailManager.php
(17.16 KB)
📄
MailServiceProvider.php
(1.72 KB)
📄
Mailable.php
(45.99 KB)
📁
Mailables
📄
Mailer.php
(18.13 KB)
📄
Markdown.php
(4.56 KB)
📄
Message.php
(9.86 KB)
📄
PendingMail.php
(3.46 KB)
📄
SendQueuedMailable.php
(3.6 KB)
📄
SentMessage.php
(1.97 KB)
📄
TextMessage.php
(1.38 KB)
📁
Transport
📄
composer.json
(1.46 KB)
📁
resources
Editing: TextMessage.php
<?php namespace Illuminate\Mail; use Illuminate\Support\Traits\ForwardsCalls; /** * @mixin \Illuminate\Mail\Message */ class TextMessage { use ForwardsCalls; /** * The underlying message instance. * * @var \Illuminate\Mail\Message */ protected $message; /** * Create a new text message instance. * * @param \Illuminate\Mail\Message $message * @return void */ public function __construct($message) { $this->message = $message; } /** * Embed a file in the message and get the CID. * * @param string|\Illuminate\Contracts\Mail\Attachable|\Illuminate\Mail\Attachment $file * @return string */ public function embed($file) { return ''; } /** * Embed in-memory data in the message and get the CID. * * @param string|resource $data * @param string $name * @param string|null $contentType * @return string */ public function embedData($data, $name, $contentType = null) { return ''; } /** * Dynamically pass missing methods to the underlying message instance. * * @param string $method * @param array $parameters * @return mixed */ public function __call($method, $parameters) { return $this->forwardDecoratedCallTo($this->message, $method, $parameters); } }
Upload File
Create Folder