500b2396 6124 6ae9 5623 577f1f50e238 - iAJTin/iExportEngine GitHub Wiki
Additional header content
Gets or sets the subject line for this e-mail message.
Namespace: iTin.Export.Model
Assembly: iTin.Export.Core (in iTin.Export.Core.dll) Version: 1.0.0.0 (1.0.0.0)
C#
public string Subject { get; set; }VB
Public Property Subject As String
Get
SetType: String
A String that contains the subject content.
ITEE Object Element Usage
<Message ...>
<Subject>string</>
...
</Message>Compatibility table with native writers.
| Comma-Separated Values CsvWriter |
Tab-Separated Values TsvWriter |
SQL Script SqlScriptWriter |
XML Spreadsheet 2003 Spreadsheet2003TabularWriter |
|---|---|---|---|
| X | X | X | X |
X value indicates that the writer supports this element.
XML
<Behaviors>
<Downdload LocalCopy="Yes"/>
<TransformFile Execute="Yes" Indented="Yes" Save="Yes" Path="~\Output"/>
<Mail Execute="Yes" Async="Yes" >
<Server>
<Credentials>
<Credential SSL="Yes"
Name="one"
UserName="[email protected]"
Password="pwd"
Host="smtp.gmail.com"/>
</Credentials>
</Server>
<Messages>
<Message Credential="one" Send="Yes">
<From Address="[email protected]"/>
<To Addresses="[email protected] [email protected]"/>
<CC Addresses="[email protected] [email protected]"/>
<Subject>New report</Subject>
<Body>Hello, this is your report, sending from iTin.Export</Body>
<Attachments>
<Attachment Path="C:\Users\somefile.txt"/>
<Attachment Path="C:\Users\Downloads\Photos Sample.zip"/>
</Attachments>
</Message>
</Messages>
</Mail>
</Behaviors>