Page Menu
Home
Sealhub
Search
Configure Global Search
Log In
Files
F9582789
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
Sat, Oct 11, 07:47 (1 d, 9 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
931155
Default Alt Text
message.ts (496 B)
Attached To
Mode
rS Sealious
Attached
Detach File
Event Timeline
Log In to Comment