GmailR signature

Hi there.

I'm trying to create an email for several companies in order to participate on a survey.

I would like to add my signature on the mail. I've read several forums where they explain the API issues regarding the signature.

However most of these forums have been created for mailr package and not gmailr specifically.

Now, if even with this package we can't add the signature in our mails, then can we at least add inline pictures with the signatures on the mails, using the gm_html_body() function.

Here a reprex.

gm_mime() %>% 
  gm_to("xyz@yzs.com") %>% 
  gm_from(" xyz@gmail.com") %>% 
  gm_subject(paste("Invitation")) %>% 
  gm_html_body(body = paste(glue("<p>Estimados Sres. <b>{total[['empresa']][k]}</b></p> \\
                                   <p> </p>\\
                                   <p>AtenciĆ³n Sr.(a) {total[['names']][k]}</p>\\
                                   <p> </p>\\
                                   <p><i>email</i> test no. {k}</p>"),
                             "<p>favor intentar enviarnos un correo siempre a {from}.</p> \\
                                  <p> Grupo focal verde validado </p>",
                                  "<h2> A plot of <b>MotorTrend</b> data <i>(1974)</i></h2>
                                  <img src='LOGO.jpeg'>"),inline = T) %>% 
  gm_attach_file('LOGO.jpeg') %>% 
  gm_create_draft()

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.