Sopur / Discord-user-bots

Working discord user bots library.
MIT License
81 stars 35 forks source link

Send message attachment files #22

Closed gearintellix closed 2 years ago

gearintellix commented 2 years ago

Hi, it would be great if we can send message attachment as build-in module

something like this:

client.send(
    "794326789480120374", // Channel to send in
    {
        attachments: [
                "path/to/file1",
                {
                        "path": "path/to/file2",
                        "name": "Custom File Name",
                        "description": "File description"
                },
                ...
        ],
        ...
    }
);
Sopur commented 2 years ago

Thank you very much for your kind contribution.

gearintellix commented 2 years ago

You're welcome 😄