Skip to content

Commit

Permalink
Fixes Email Notification Arg Name
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexCatarino committed Jan 30, 2025
1 parent fe3132a commit 4e51dd8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Resources/notifications/email-setup.html
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<p>To send email notifications in your code files, run:</p>
<div class="section-example-container">
<pre class="csharp">var body = "2023-07-13T12:20:00.2033226Z,EURUSD,1.11853,89187,Market,Filled,99758.33511";
Notify.Email(emailAddress: "[email protected]", subject: "Last Trade", body: body);</pre>
<pre class="python">body = "2023-07-13T12:20:00.2033226Z,EURUSD,1.11853,89187,Market,Filled,99758.33511"
self.notify.email(address="[email protected]", subject="Last Trade", body=body)</pre>
<pre class="csharp">var message = "2023-07-13T12:20:00.2033226Z,EURUSD,1.11853,89187,Market,Filled,99758.33511";
Notify.Email(emailAddress: "[email protected]", subject: "Last Trade", message: message);</pre>
<pre class="python">message = "2023-07-13T12:20:00.2033226Z,EURUSD,1.11853,89187,Market,Filled,99758.33511"
self.notify.email(address="[email protected]", subject="Last Trade", message=message)</pre>
</div>

<p>You can include an attachment and set its name.</p>
Expand Down

0 comments on commit 4e51dd8

Please sign in to comment.