1
我想發送電子郵件在R的批次機制(稱爲「D:\ R \ R-3.2.5 \ bin \ i386 \ R」--internet2 CMD BATCH腳本。 R)。在圭政權下,所有的工作都很好。發送電子郵件使用圖書館gmailr批量機制下R
首先編輯:
gmail_auth(scope='full',secret_file = 'client_id.json')
notification_email <- mime() %>%
to("[email protected]") %>%
from("[email protected]") %>%
subject("subject"))
send_message(notification_email)
,但有
Error:oauth_listener() needs an interactive environment.
第二個編輯
沒有gmail_auth
notification_email <- mime() %>%
to("[email protected]") %>%
from("[email protected]") %>%
subject("subject"))
send_message(notification_email)
也有
Error: oauth_listener() needs an interactive environment.
謝謝!這工作! –