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