The `quest_mail_sender` table
Table Structure
Field | Type | Attribute | Key | Null | Default | Extra | Comment |
---|---|---|---|---|---|---|---|
QuestId | INT | UNSIGNED | PRI | NO | 0 | ||
RewardMailSenderEntry | INT | UNSIGNED | NO | 0 |
Description of the fields
Is the quest ID, obtained from quest_template
It is the ID of the mail that must be sent to the player once it has been recommended by the quest.
DELETE FROM `quest_mail_sender` WHERE `QuestId`=10588 AND `RewardMailSenderEntry`=18166;
INSERT INTO `quest_mail_sender` (`QuestId`, `RewardMailSenderEntry`) VALUES
(10588, 18166);