how to make a mailing list with a photo?

Viewed 31

can anyone help me?I have a mailing list in a bot, but it only works with text. and I need to make it work photo + text

    # Рассылка
@dp.message_handler(IsAdmin(), text=" Рассылка", state="*")
async def functions_mail(message: Message, state: FSMContext):
    await state.finish()

    await state.set_state("here_mail_text")
    await message.answer("<b> Введите текст для рассылки пользователям</b>\n"
                      "❕ Вы можете использовать HTML разметку")
0 Answers
Related