Page Menu
Home
Sealhub
Search
Configure Global Search
Log In
Files
F3010643
message.ts
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
496 B
Referenced Files
None
Subscribers
None
message.ts
View Options
import
assert
from
"assert"
;
import
App
from
"../app/app"
;
export
type
MessageData
=
{
to
:
string
;
subject
:
string
;
html
:
string
;
attachments
:
any
[];
text
:
string
;
};
export
default
class
Message
{
data
:
MessageData
;
constructor
(
data
:
MessageData
)
{
assert
(
data
.
to
);
assert
(
data
.
subject
);
assert
(
data
.
html
);
assert
(
data
.
attachments
===
undefined
||
Array
.
isArray
(
data
.
attachments
)
);
this
.
data
=
data
;
}
async
send
(
app
:
App
)
{
return
app
.
mailer
.
send
(
this
.
data
);
}
}
File Metadata
Details
Attached
Mime Type
text/x-java
Expires
Wed, May 7, 19:45 (1 d, 3 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
639446
Default Alt Text
message.ts (496 B)
Attached To
Mode
rS Sealious
Attached
Detach File
Event Timeline
Log In to Comment