This function transforms a given name into an email address following the format firstname.lastname@chu-bordeaux.fr.
from_name_to_adress(name = "Peter Parker")A character string containing the generated email address.
from_name_to_adress("John Doe")
#> [1] "john.doe@chu-bordeaux.fr"
from_name_to_adress()
#> [1] "peter.parker@chu-bordeaux.fr"