Googleスプレッドシートにストックされているメールアドレスでメールを送信したい. セルの値を取得できますが、次のようになります:
(<Cell R1C1 'email@gmail.com'>,)
(<Cell R2C1 'email1@gmail.com'>,)
...
MIMEMultipart を使用するには、カンマで区切る必要があります: email@gmail.com,email1gmail.com,...
これは私のコードです:
import gspread
import json
from oauth2client.client import SignedJwtAssertionCredentials
import gdata.spreadsheet.service
from email.MIMEMultipart import MIMEMultipart
from email.MIMEText import MIMEText
import smtplib
json_key = json.load(open('xxx.json'))
scope = ['https://spreadsheets.google.com/feeds']
credentials = SignedJwtAssertionCredentials(json_key['client_email'], json_key['private_key'], scope)
gc = gspread.authorize(credentials)
wks = gc.open('xxx')
worksheet_id = 'od6'
worksheet = wks.get_worksheet(0)
print worksheet.row_values("A1")
for x in xrange(1,50):
test = "A%s" %x
msg = MIMEMultipart()
msg["To"] = worksheet.acell(test),
print msg["To"]