-
Notifications
You must be signed in to change notification settings - Fork 285
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
86d38f0
commit e42df8c
Showing
4 changed files
with
11 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,11 +19,11 @@ | |
] | ||
} | ||
--> | ||
## How to send a Mail | ||
# How to send a Mail | ||
|
||
The following example shows you how you can send a mail. Before you can use this functionality, you have to define a Mail server in the Lucee Administrator. | ||
|
||
### Tags | ||
## Tags | ||
|
||
```coldfusion | ||
<cfmail subject="Your Order" from="[email protected]" to="[email protected]"> | ||
|
@@ -32,7 +32,7 @@ The following example shows you how you can send a mail. Before you can use this | |
</cfmail> | ||
``` | ||
|
||
### Script | ||
## Script | ||
|
||
```cfs | ||
mail subject="Your Order" from="[email protected]" to="[email protected]" { | ||
|
@@ -42,7 +42,3 @@ mail subject="Your Order" from="[email protected]" to="[email protected]" { | |
``` | ||
|
||
That is all you need to do to send a mail. | ||
|
||
## Advanced | ||
|
||
TODO |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters