No flags found
Use flags to group coverage reports by test type, project and/or folders.
Then setup custom commit statuses and notifications for each flag.
e.g., #unittest #integration
#production #enterprise
#frontend #backend
1500118
... +1 ...
6f862b3
Use flags to group coverage reports by test type, project and/or folders.
Then setup custom commit statuses and notifications for each flag.
e.g., #unittest #integration
#production #enterprise
#frontend #backend
238 | 238 | eval(fcall, parent.frame()) |
|
239 | 239 | } |
|
240 | 240 | ||
241 | - | # ./swaks --auth \ |
|
242 | - | # --server \ |
|
243 | - | # --au postmaster@YOUR_DOMAIN_NAME \ |
|
244 | - | # --ap 3kh9umujora5 \ |
|
245 | - | # --to bar@example.com \ |
|
246 | - | # --h-Subject: "Hello" \ |
|
247 | - | # --body 'Testing some Mailgun awesomness!' |
|
241 | + | #' @rdname server |
|
242 | + | #' |
|
243 | + | #' @section Sendinblue: |
|
244 | + | #' |
|
245 | + | #' To use Sendinblue you'll need to first create an account. You'll find your |
|
246 | + | #' SMTP username and password in the SMTP & API section of your account |
|
247 | + | #' settings. |
|
248 | + | #' |
|
249 | + | #' @export |
|
250 | + | #' |
|
251 | + | #' @examples |
|
252 | + | #' |
|
253 | + | #' # Set username and password for Sendinblue SMTP server. |
|
254 | + | #' smtp <- sendinblue( |
|
255 | + | #' username = "bob@gmail.com", |
|
256 | + | #' password = "xsmtpsib-c75cf91323adc53a1747c005447cbc9a893c35888635bb7bef1a624bf773da33-hUx3LBvftIcRPGZE" |
|
257 | + | #' ) |
|
258 | + | sendinblue <- function( |
|
259 | + | username, |
|
260 | + | password, |
|
261 | + | ...) { |
|
262 | + | fcall <- match.call(expand.dots = TRUE) |
|
263 | + | ||
264 | + | fcall[[1]] <- server |
|
265 | + | fcall$host = "smtp-relay.sendinblue.com" |
|
266 | + | fcall$port = 587 |
|
267 | + | ||
268 | + | eval(fcall, parent.frame()) |
|
269 | + | } |
Files | Coverage |
---|---|
Project Totals (18 files) | 99.05% |
6f862b3
db4a279
1500118