回答編集履歴

1

修正

2021/11/13 14:05

投稿

退会済みユーザー
test CHANGED
@@ -80,15 +80,19 @@
80
80
 
81
81
  const contacts = ContactsApp.getContactsByEmailAddress(mailAddress);
82
82
 
83
- const name = contacts[0].getFullName();
83
+ const name = contacts[0].getFullName()
84
84
 
85
85
 
86
86
 
87
87
  for(const attachment of attachments){
88
88
 
89
- folder.createFile(attachment).setName(name);
89
+ const file = folder.createFile(attachment);
90
90
 
91
+ const newFileName = '[送信者名:' + name + ']' + file.getName();
92
+
93
+ file.setName(newFileName);
94
+
91
- Logger.log('ファイル名「' + name + '」をフォルダに作成しました。')
95
+ Logger.log('ファイル名「' + newFileName + '」をフォルダに作成しました。')
92
96
 
93
97
  }
94
98