Nestgram
  • ⭐About Nestgram
  • 📄Guide
  • 📰News
  • đŸ”ŧHandling updates
    • Handling commands
    • Handling text messages
    • Handling other updates
    • Entities: url, email and other
    • Other arguments in handler
    • Handling media files and download it
  • đŸĒļNestgram Features
    • Services
    • Middlewares and Params
    • Sending messages correctly
    • Answer class
    • Scopes
    • States
    • Views
  • đŸ’ŦMessages
    • Sending a photo, video and other media
    • Sending a media group
    • Send location (live) or venue
    • Send contact
    • Send poll
    • Send dice
    • Edit/delete messages
    • Copy or Forward a message
  • âŒ¨ī¸Keyboards
    • Keyboard types, building keyboard
    • Handle underTheMessage keyboard button click by Alert or Toast
    • Keyboard layouts
  • âš™ī¸Config
    • CLI
    • Webhooks and run config
    • Api class
    • Modules
      • Mongo module
    • Controller Helper class
  • 🤖API Reference
    • Set chat action
    • Save user profile photo
    • Ban, unban user or chat
    • Restrict or Promote user
    • Set chat permissions
    • Set chat admin custom title
    • Chat invite links
    • Join requests
    • Update chat info, photo, title, description and more
    • Pin or unpin messages
    • Get chat info, leave chat
    • Check user subscription
    • Chat sticker set
    • My commands
    • My default admin rights
    • Menu button
Powered by GitBook
On this page
  • Forward a message
  • Copy message
  1. Messages

Copy or Forward a message

Copy or forward a message

PreviousEdit/delete messagesNextKeyboard types, building keyboard

Last updated 2 years ago

Forward a message

To forward a message, use Forward class-method or .forward answer/api method

You can read more about Api methods

You can read more about Answer class

app.controller.ts
import { Controller, OnCommand, UserId, Forward } from 'nestgram';
import { AppService } from './app.service';

@Controller()
export class AppController {
  constructor(private readonly appService: AppService) {}

  @OnCommand('start')
  async start(@UserId() userId: number): Promise<Forward> {
    return new Forward(userId);
  }
}

Copy message

You can copy message. This is similar to forwarding messages, but the sender's name will be removed, and you can also change the message options. Use Copy class-method or .copy answer/api method

Copy class-method or .copy Answer method take arguments:

Argument
Description
Required
1

Chat id you want to copy to

Required

2

Keyboard you want to add

Optional

3

Optional

app.controller.ts
import { Controller, OnCommand, UserId, Copy, Keyboard, KeyboardTypes } from 'nestgram';
import { AppService } from './app.service';

@Controller()
export class AppController {
  constructor(private readonly appService: AppService) {}

  @OnCommand('start')
  async start(@UserId() userId: number): Promise<Copy> {
    return new Copy(userId, new Keyboard(KeyboardTypes.removeUnderTheChat));
  }
}

If you want to know what arguments an API method takes, see the IDE hint

đŸ’Ŧ
Options
here
here