<- Back to SMTPit Pro function list
SMTPit_SetSubject
- Description
Use this function to set the Subject of the email. If you assign a Subject of the email with this function, SMTPit Pro will ignore the Default Subject field in the Configuration Dialog.
- Return Type
- Text
- Format
- SMTPit_SetSubject ( Subject ; SMTPit_Append )
- Required Parameters
- Subject
The Subject for the email.
- Subject
- Optional Parameters
- SMTPit_Append
Leave this in to add this onto the end of the current Subject.
- SMTPit_Append
- Examples
Example 1
Code:
SMTPit_SetSubject("In response to your inquiry")Result:
Sets the subject to "In response to your inquiry".Example 2
Code:
SMTPit_SetSubject("In response to your inquiry"; SMTPit_Append )Result:
Appends the text "In response to your inquiry" to the current subject.