diff website/src/examples/upload-and-email.html.luan @ 1521:d3e61cd2aca0

docs and shell bug fix
author Franklin Schmidt <fschmidt@gmail.com>
date Thu, 25 Jun 2020 23:17:14 -0600
parents 60d013d5c7ef
children 13135e289b50
line wrap: on
line diff
--- a/website/src/examples/upload-and-email.html.luan	Sun Jun 21 18:14:13 2020 -0600
+++ b/website/src/examples/upload-and-email.html.luan	Thu Jun 25 23:17:14 2020 -0600
@@ -46,11 +46,11 @@
 	else
 		local file = Http.request.parameters.file
 		send{
-			from = "smtp@luan.ws";
-			to = email;
-			subject = "Upload and Email";
-			body = "file should be attached";
-			attachments = {file};
+			from = "smtp@luan.ws"
+			to = email
+			subject = "Upload and Email"
+			body = "file should be attached"
+			attachments = {file}
 		}
 		sent()
 	end