Page Menu
Home
Sealhub
Search
Configure Global Search
Log In
Files
F969409
message.ts
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
508 B
Referenced Files
None
Subscribers
None
message.ts
View Options
import
assert
from
"assert"
;
import
type
{
App
}
from
"../app/app.js"
;
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
Sat, Nov 23, 01:18 (1 d, 5 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
547767
Default Alt Text
message.ts (508 B)
Attached To
Mode
rS Sealious
Attached
Detach File
Event Timeline
Log In to Comment