We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This example code should explains what I mean well:
library(blastula) files <- c(tempfile(fileext = ".txt"), tempfile(fileext = ".txt")) writeLines("file1", files[1]) writeLines("file2", files[2]) email <- compose_email("test") out1 <- add_attachment(email, files)$attachments out2 <- local({ email <- add_attachment(email, files[1]) email <- add_attachment(email, files[2]) email$attachments })
out1 and out2 should generate the same result. However, at present, smtp_send() will fail when out1 is used for the email argument.
out1
out2
smtp_send()
email
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
This example code should explains what I mean well:
out1
andout2
should generate the same result. However, at present,smtp_send()
will fail whenout1
is used for theemail
argument.The text was updated successfully, but these errors were encountered: