DB/MailTemplate: Difference between revisions

From wowdev
Jump to navigation Jump to search
No edit summary
mNo edit summary
Line 1: Line 1:
==1.12.1.5875==
struct MailTemplateRec {
  uint32_t m_ID;
  {{Template:Type|stringref}} m_body_lang;
};
==Structure==
==Structure==
  '''Column Field Type Notes'''  
  '''Column Field Type Notes'''  

Revision as of 22:04, 1 October 2017

1.12.1.5875

struct MailTemplateRec {
  uint32_t m_ID;
  stringref m_body_lang;
};

Structure

Column	Field 		Type 		Notes 
1 	ID 		Integer 	
2-10 	Subject 	Loc 	
11-19 	Message Body 	Loc		Text used in mail message  	

6.0.1.18179

struct MailTemplateRec {
  uint32_t m_ID;
  stringref m_subject_lang;
  stringref m_body_lang;
};