Page MenuHomePhorge

Test.php
No OneTemporary

Authored By
Unknown
Size
618 B
Referenced Files
None
Subscribers
None

Test.php

<?php
namespace App\Mail;
class Test extends Mailable
{
/**
* Build the message.
*
* @return $this
*/
public function build()
{
$this->text('emails.plain.test')
->subject("Kolab Email Test");
return $this;
}
/**
* Render the mail template with fake data
*
* @param string $type Output format ('html' or 'text')
*
* @return string HTML or Plain Text output
*/
public static function fakeRender(string $type = 'text'): string
{
$mail = new self();
return Helper::render($mail, $type);
}
}

File Metadata

Mime Type
text/x-php
Expires
Mon, Apr 6, 12:54 AM (5 d, 2 h ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
18741177
Default Alt Text
Test.php (618 B)

Event Timeline