0
win32ole
을 사용하여 이메일 수신자를 변경하는 방법이 있습니까?WIN32OLE로 이메일 수신자 변경
outlook = WIN32OLE.new('Outlook.Application')
message = outlook.CreateItem(0)
message.Subject = 'Test email'
message.Body = 'This is the test body'
message.To = '[email protected]'
message.From = ''[email protected]' #<= This doesn't work
message.Save
message.Send
당신이 message.From
를 실행하면 다음과 같은 오류 얻을 :
WIN32OLERuntimeError: unknown property or method: `From'
HRESULT error code:0x80020006
Unknown name.
그래서 메시지에서 보낸 내가 선택할 수있는 방법이 있습니까?
예를 들어 주시겠습니까? –
예를 들면? Exchange 계정이나 SMTP 계정입니까? –
교환 할 때 혼란 스럽습니다 –