Skip to content

Commit

Permalink
remove commas
Browse files Browse the repository at this point in the history
  • Loading branch information
Bikingman committed Aug 23, 2021
1 parent e811565 commit 2bee717
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion report_processor/R/fct_reporter_utilities.R
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ long_job <- function(connection, user_id, run_id){
to = email_access,
from = Sys.getenv("SSPF_EMAIL_ADDRESS"),
subject = paste0("SSPF - Report Ready for Download"),
text = paste0('This is an automated message to notify you the Safer Streets Priority Finder analysis report is ready to download for study area, ', run_id,'. Thanks for using the Safer Streets Priority Finder!')
text = paste0('This is an automated message to notify you the Safer Streets Priority Finder analysis report is ready to download for study area ', run_id,'. Thanks for using the Safer Streets Priority Finder!')
)

smtp_report <- emayili::server(host = "mail.hover.com",
Expand Down
4 changes: 2 additions & 2 deletions vulusr_model_processor/R/fct_hin_tool.R
Original file line number Diff line number Diff line change
Expand Up @@ -1388,7 +1388,7 @@ hin_run_all = function(con, inputs, user_id, run_id) {
to = email_access,
from = Sys.getenv("SSPF_EMAIL_ADDRESS"),
subject = paste0("SSPF - Model Started"),
text = paste0('This is an automated message to notify you the Safer Streets Priority Finder is started building a model for your study area, ', run_id,'. We\'ll notify you when the model is ready. Thanks for using the Safer Streets Priority Finder!')
text = paste0('This is an automated message to notify you the Safer Streets Priority Finder is started building a model for your study area ', run_id,'. We\'ll notify you when the model is ready. Thanks for using the Safer Streets Priority Finder!')
)

smtp_start <- emayili::server(host = "mail.hover.com",
Expand Down Expand Up @@ -1419,7 +1419,7 @@ hin_run_all = function(con, inputs, user_id, run_id) {
to = email_access,
from = Sys.getenv("SSPF_EMAIL_ADDRESS"),
subject = paste0("SSPF - Model Results Ready"),
text = paste0('This is an automated message to notify you the Safer Streets Priority Finder has finished the model for your study area, ', run_id,'. Thanks for using the Safer Streets Priority Finder!')
text = paste0('This is an automated message to notify you the Safer Streets Priority Finder has finished the model for your study area ', run_id,'. Thanks for using the Safer Streets Priority Finder!')
)

smtp_end <- emayili::server(host = "mail.hover.com",
Expand Down

0 comments on commit 2bee717

Please sign in to comment.