mailmessage.dtd
来自「Delphi XML & XPATH源代码」· DTD 代码 · 共 24 行
DTD
24 行
<?xml version="1.0"?>
<!DOCTYPE template [
<!-- The message template for a mass electronic mail-out. -->
<!ELEMENT template (query, subject, message)>
<!-- The query to submit to the database.
This needs to retrieve all the fields to be included in the
message text below, along with the recipient's e-mail address. -->
<!ELEMENT query (#PCDATA)>
<!-- The field that contains the recipient's
e-mail address must be identified. -->
<!ATTLIST query emailfield NMTOKEN #REQUIRED>
<!-- The subjectline for the outgoing e-mails. -->
<!ELEMENT subject (#PCDATA)>
<!-- The text of the message, including optional fields from the database. -->
<!ELEMENT message (#PCDATA | field)*>
<!-- The name of the field whose value is placed here. -->
<!ELEMENT field (#PCDATA)>
]>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?