Larefly

Results 263 comments of Larefly

Note it isn't clean but that is what you need to do. If you like you can make a request to [s3fs](https://github.com/DyfanJones/s3fs) (an R implementation of s3fs based on the...

This functionality has been added to [s3fs](https://github.com/DyfanJones/s3fs). So feel free to use that method or the method above :) For completeness here is the s3fs code: ```r remotes::install_github("DyfanJones/s3fs") library(s3fs) s3_file_stream_out(...

Hi @aleaficionado, havent had much time to implement a retry just yet. I am just working through the backlog. If you have time I am open to PR. In the...

Currently it going to memory then to file. We do have a PR (https://github.com/paws-r/paws/pull/458) that will output directly to disk however I believe there needs to be a few tweaks...

Hi @dereckdemezquita PR (#458) has been merged, and will be in the next paws release

Side note I believe it should work if the raw email is written out to a file then read in by paws for example: ```r writeLines(as.character(email), "myemail.txt") ses$send_raw_email( SourceArn =...

Just a heads up to 3 possible works arounds are: 1. Writing text to a file 2. Creating a raw connection object 3. Just send the email as a raw...

Hi @vituri, I did a quick profvis to try and identify what could be causing this issue: ```r ######################################################################## # libraries ######################################################################## library(emayili) library(magrittr) ######################################################################## # set up test file...

Ah sorry about that, i will have a look into it over the next couple of days 😄

Hi @juliasilge, I have identified the issue and PR #522 should resolve it. In the meantime feel free to use the dev branch to ensure everything is playing nicely with...