Skip to content

Commit

Permalink
improve test email body
Browse files Browse the repository at this point in the history
  • Loading branch information
Dominion5254 committed Dec 23, 2024
1 parent 432d23b commit 527ed50
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/startos/src/system.rs
Original file line number Diff line number Diff line change
Expand Up @@ -886,7 +886,7 @@ pub async fn test_system_smtp(ctx: RpcContext, smtp: SmtpValue) -> Result<(), Er
.from((from.clone(), login.clone()))
.to(vec![(from, login.clone())])
.subject("StartOS Test Email")
.text_body("Email credentials have been successfully setup on your StartOS Server");
.text_body("This is a test emails sent from your StartOS Server");
SmtpClientBuilder::new(server, port)
.implicit_tls(false)
.credentials((login, pass_val))
Expand Down

0 comments on commit 527ed50

Please sign in to comment.