This function generates HTML content for an email using data from Cristin.
CristinMail(
unit.id,
monthlies,
unit.paths,
archive.host,
subject = NULL,
header = NULL,
footer = NULL,
replace.style = TRUE,
width = 700,
lang = "nn",
get.ezproxy = FALSE,
ezproxy.host = "inn.no",
silent = FALSE
)
The key of the unit for which the email content is generated.
Data containing monthly information from Cristin.
Data containing the Zotero paths of Cristin units.
Host of the archive.
The subject of the email. If not provided, it will be generated based on the data.
The header of the email. If not provided, it will be generated based on the data.
The footer of the email. If not provided, a default footer will be used.
Logical, indicating whether to replace styles in the generated HTML.
Width of the email content in pixels.
Language for localization ("nb", "nn", "no", or "en"). Defaults to "nn".
Use ezproxy, Default: FALSE
ezproxy host, Default: 'inn.no'
c2z is noisy, tell it to be quiet, Default: FALSE
A list containing the subject and HTML body of the email.
Used with `CristinMonthly` to create month-to-month bibliography in HTML format for email of selected units
# \donttest{
example <- CristinMonthly(
c2z::Zotero(
id = "4827927",
api = "Io1bwAiOjB1jPgUNegjJhJxF",
user = FALSE
),
unit.id = "209.5.10.0",
start.date = "2023-07",
post = TRUE,
silent = FALSE,
use.citeproc = FALSE,
use.identifiers = FALSE,
get.unpaywall = FALSE,
get.ezproxy = FALSE
)
#> Searching for collections
#> Found 5 collections
#> The Zotero list contains: 5 collections, 0 items, and 0 attachments
#> Cristin query based on 1 unit from 07.2023 to 08.2023
#> Creating new collections
#>
—————————————————Process: 100.00% (1/1). Elapsed time: 00:00:00—————————————————
#> Error in if (count == 1) singularis else pluralis: argument is of length zero
# Create HTML email
if (any(nrow(example$monthlies))) {
example.mail <- CristinMail(
"209.5.10.0",
example$monthlies,
example$unit.paths,
"example.host"
)
# Show subject
cat(example.mail$subject)
}
#> Error in example$monthlies: object of type 'closure' is not subsettable
# }