diff website/src/examples/upload-and-email.html.luan @ 1312:60d013d5c7ef

minor
author Franklin Schmidt <fschmidt@gmail.com>
date Thu, 24 Jan 2019 21:56:53 -0700
parents e8020216dee7
children d3e61cd2aca0
line wrap: on
line diff
--- a/website/src/examples/upload-and-email.html.luan	Thu Jan 24 21:15:03 2019 -0700
+++ b/website/src/examples/upload-and-email.html.luan	Thu Jan 24 21:56:53 2019 -0700
@@ -5,7 +5,7 @@
 
 local send = Mail.Sender{
 	host = "smtpcorp.com"
-	username = "smtp@luanhost.com"
+	username = "smtp@luan.ws"
 	password = "luanhost"
 	port = 2525
 }.send
@@ -46,7 +46,7 @@
 	else
 		local file = Http.request.parameters.file
 		send{
-			from = "smtp@luanhost.com";
+			from = "smtp@luan.ws";
 			to = email;
 			subject = "Upload and Email";
 			body = "file should be attached";