-
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #47 from mrchypark/46-cran-issue
46 cran issue
- Loading branch information
Showing
11 changed files
with
58 additions
and
49 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,22 @@ | ||
^renv$ | ||
^renv\.lock$ | ||
^data-raw$ | ||
^README\.Rmd$ | ||
^R/\.logo\.R$ | ||
^R/\.add_git_hook\.R$ | ||
^codecov\.yml$ | ||
^\.github$ | ||
^\.travis\.yml$ | ||
^revdep$ | ||
^cran-comments\.md$ | ||
^CODE_OF_CONDUCT\.md$ | ||
^appveyor\.yml$ | ||
^docs$ | ||
^_pkgdown\.yml$ | ||
^LICENSE\.md$ | ||
^sendgridr\.Rproj$ | ||
^\.Rproj\.user$ | ||
^build_pkgdown\.R$ | ||
^pre_commit$ | ||
^post_commit$ | ||
^\.all-contributorsrc$ | ||
gtest.* | ||
^pkgdown$ | ||
^renv$ | ||
^renv\.lock$ | ||
^data-raw$ | ||
^README\.Rmd$ | ||
^R/\.logo\.R$ | ||
^R/\.add_git_hook\.R$ | ||
^codecov\.yml$ | ||
^\.github$ | ||
^revdep$ | ||
^cran-comments\.md$ | ||
^CODE_OF_CONDUCT\.md$ | ||
^docs$ | ||
^_pkgdown\.yml$ | ||
^LICENSE\.md$ | ||
^sendgridr\.Rproj$ | ||
^\.Rproj\.user$ | ||
^build_pkgdown\.R$ | ||
^pre_commit$ | ||
^post_commit$ | ||
^\.all-contributorsrc$ | ||
^pkgdown$ | ||
^CRAN-SUBMISSION$ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
Version: 0.5.1 | ||
Date: 2022-08-12 15:55:30 UTC | ||
SHA: dcb72e18a9590835eba514ce8e22afacf1ce8600 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
Package: sendgridr | ||
Title: Mail Sender Using 'Sendgrid' Service | ||
Version: 0.5.0 | ||
Version: 0.5.1 | ||
Authors@R: person(given = "Chanyub", | ||
family = "Park", | ||
role = c("aut","cre"), | ||
email = "[email protected]", | ||
comment = c(ORCID = "0000-0001-6474-2570")) | ||
family = "Park", | ||
role = c("aut","cre"), | ||
email = "[email protected]", | ||
comment = c(ORCID = "0000-0001-6474-2570")) | ||
Description: Send email using 'Sendgrid' <https://sendgrid.com/> | ||
mail API(v3) <https://docs.sendgrid.com/api-reference/how-to-use-the-sendgrid-v3-api/authentication>. | ||
License: MIT + file LICENSE | ||
|
@@ -21,7 +21,7 @@ Imports: | |
emayili (>= 0.7), | ||
keyring | ||
Encoding: UTF-8 | ||
RoxygenNote: 7.1.2 | ||
RoxygenNote: 7.2.1 | ||
Depends: | ||
R (>= 3.4) | ||
Suggests: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,7 +15,7 @@ status](https://www.r-pkg.org/badges/version/sendgridr)](https://CRAN.R-project. | |
[![runiverse-package](https://mrchypark.r-universe.dev/badges/sendgridr)](https://mrchypark.r-universe.dev/ui#packages) | ||
[![metacran | ||
downloads](https://cranlogs.r-pkg.org/badges/sendgridr)](https://cran.r-project.org/package=sendgridr) | ||
[![Downloads](https://cranlogs.r-pkg.org/badges/grand-total/sendgridr)](https://cran.rstudio.com/package=sendgridr) | ||
[![Downloads](https://cranlogs.r-pkg.org/badges/grand-total/sendgridr)](https://CRAN.R-project.org/package=sendgridr) | ||
<!-- badges: end --> | ||
|
||
The goal of sendgridr is to mail using r with sendgrid service that | ||
|
@@ -63,11 +63,11 @@ class(sendproject1) | |
#> [1] "sg_mail" "list" | ||
sendproject1 | ||
#> SendGrid Mail - | ||
#> x from : (required) | ||
#> x to : (required) | ||
#> x subject: (required) | ||
#> x content: (required) | ||
#> ✓ attach : (optional) | ||
#> ✖ from : (required) | ||
#> ✖ to : (required) | ||
#> ✖ subject: (required) | ||
#> ✖ content: (required) | ||
#> ✔ attach : (optional) | ||
``` | ||
|
||
to, from, subject, body are required. cc, bcc, attachments are optional. | ||
|
@@ -86,11 +86,11 @@ mail() |> | |
subject("test mail title") |> | ||
body("hello world!") | ||
#> SendGrid Mail - | ||
#> ✓ from : [email protected] <[email protected]> | ||
#> ✓ to : cnt[3] 1 exam <[email protected]>, 2 exam <toexam2 ... | ||
#> ✓ subject: nchr[15] test mail title | ||
#> ✓ content: nchr[12] hello world! | ||
#> ✓ attach : (optional) | ||
#> ✔ from : [email protected] <[email protected]> | ||
#> ✔ to : cnt[3] 1 exam <[email protected]>, 2 exam <toexam2 ... | ||
#> ✔ subject: nchr[15] test mail title | ||
#> ✔ content: nchr[12] hello world! | ||
#> ✔ attach : (optional) | ||
``` | ||
|
||
## Code of Conduct | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
## R CMD check results | ||
|
||
0 errors | 0 warnings | 1 note | ||
|
||
* Rebuild document with roxygen2 7.2.1 |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters