sendWithEmbedFooterIcon

@CheckReturnValue
abstract fun sendWithEmbedFooterIcon(embed: MessageEmbed): RestAction<Message>(source)

Sends a MessageEmbed on the event's channel with the default footer icon

Return

The RestAction of the Message to send

Parameters

embed

MessageEmbed to send

See also


@CheckReturnValue
abstract fun sendWithEmbedFooterIcon(channel: MessageChannel, embed: MessageEmbed): RestAction<Message>(source)

Sends a MessageEmbed on the specified channel with the default footer icon

Return

The RestAction of the Message to send

Parameters

channel

MessageChannel to send the embed in

embed

MessageEmbed to send

See also


@CheckReturnValue
abstract fun sendWithEmbedFooterIcon(channel: MessageChannel, iconStream: InputStream, embed: MessageEmbed): RestAction<Message>(source)

Sends a MessageEmbed on the specified channel with the default footer icon

Return

The RestAction of the Message to send

Parameters

channel

MessageChannel to send the embed in

iconStream

InputStream of the footer icon, the input stream is closed once it is unreachable

embed

MessageEmbed to send

See also