PHP 8.3.31
Preview: TextMessage.php Size: 1.38 KB
/home/getspomw/royalsquad.us/vendor/laravel/framework/src/Illuminate/Mail/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);
    }
}

Directory Contents

Dirs: 4 × Files: 13

Name Size Perms Modified Actions
Events DIR
- drwxrwxrwx 2025-09-17 06:52:59
Edit Download
Mailables DIR
- drwxrwxrwx 2025-09-17 06:52:59
Edit Download
resources DIR
- drwxrwxrwx 2025-09-17 06:52:59
Edit Download
Transport DIR
- drwxrwxrwx 2025-09-17 06:52:59
Edit Download
5.12 KB lrw-rw-rw- 2025-09-17 06:52:59
Edit Download
1.56 KB lrw-rw-rw- 2025-09-17 06:52:59
Edit Download
1.05 KB lrw-rw-rw- 2025-09-17 06:52:59
Edit Download
46.29 KB lrw-rw-rw- 2025-09-17 06:52:59
Edit Download
18.38 KB lrw-rw-rw- 2025-09-17 06:52:59
Edit Download
17.88 KB lrw-rw-rw- 2025-09-17 06:52:59
Edit Download
1.72 KB lrw-rw-rw- 2025-09-17 06:52:59
Edit Download
4.56 KB lrw-rw-rw- 2025-09-17 06:52:59
Edit Download
9.91 KB lrw-rw-rw- 2025-09-17 06:52:59
Edit Download
3.78 KB lrw-rw-rw- 2025-09-17 06:52:59
Edit Download
3.60 KB lrw-rw-rw- 2025-09-17 06:52:59
Edit Download
2.02 KB lrw-rw-rw- 2025-09-17 06:52:59
Edit Download
1.38 KB lrw-rw-rw- 2025-09-17 06:52:59
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).