diff --git a/core/startos/src/system.rs b/core/startos/src/system.rs index 4bdffe454..061586916 100644 --- a/core/startos/src/system.rs +++ b/core/startos/src/system.rs @@ -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))