Skip to content

Commit

Permalink
pmet result email render
Browse files Browse the repository at this point in the history
  • Loading branch information
duocang committed Sep 16, 2024
1 parent e445c4e commit fb365f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/utils/send_mail.R
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ SendResultMail <- function(recipient = NULL, result_link = NULL) {
)

email <- emayili::envelope()
email <- email %>% emayili::from(sender) %>% emayili::to(recipient) %>% emayili::subject(subject) %>% emayili::text(body)
email <- email %>% emayili::from(sender) %>% emayili::to(recipient) %>% emayili::subject(subject) %>% emayili::html(body)

smtp(email, verbose = TRUE)
}
Expand Down

0 comments on commit fb365f4

Please sign in to comment.