如何寄信
出自VFP Wiki
如何寄信
的原始碼
跳轉到:
導航
,
搜尋
根據以下的原因,您並無權限去做編輯這個頁面:
你所請求執行的操作被禁止。
你可以檢視並複製本頁面的原始碼。
[[category:Internet相關問題]] ===使用MSMAPI=== ====來源==== *http://fox.hanyu.com.tw/View.aspx?fbId=7&Id=7717 *http://fox.hanyu.com.tw/View.aspx?fbId=1&Id=17394 *http://fox.hanyu.com.tw/View.aspx?fbId=1&Id=15910 *http://fox.hanyu.com.tw/View.aspx?fbId=1&Id=351 *VFP目錄下的...\samples\solution\ole\sendmail.scx *http://vfp.sunyear.com.tw/viewtopic.php?t=27&highlight=FTP (Ruey) ====提供者==== *狐友 saint *Ruey ====環境==== *需安裝 Office ====範例==== <pre> oSession = CREATEOBJECT("MSMapi.MapiSession") oMessage = CREATEOBJECT("MSMapi.MapiMessages") oSession.LogonUI = .t. oSession.SignOn *-- The message control needs to reference the session control's ID. oMessage.SessionID = oSession.SessionID oMessage.MsgIndex = -1 *-- Set up our message and send it. oMessage.Compose oMessage.msgsubject = "Attachments sent using FoxPro and MAPI" oMessage.msgnotetext = " Attached are some test files." *-- Create an array holding the attachment file names. DIMENSION lcAttachment(2) lcAttachment(1) = home()+ "samples\data\customer.dbf" lcAttachment(2) = home()+ "samples\data\customer.cdx" *-- Attach the files. FOR lnCount = 1 TO ALEN(lcAttachment) oMessage.AttachmentIndex = lnCount - 1 oMessage.AttachmentPathName = lcAttachment(lnCount) ENDFOR *-- Send the message on its way. oMessage.send(1) </pre> ===使用CDO=== ====來源==== *http://fox.hanyu.com.tw/View.aspx?fbId=1&Id=18075 *http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cdosys/html/_cdosys_imessage_interface.asp ====提供者==== *由狐友violet提供 *傳遞 html 格式與附件,是由狐友 erwin_ho 提供. ====環境==== *Windows 版本: 2000 以後的版本 ====範例==== <pre> oMSG = createobject("CDO.Message") oMSG.To = "violet@kkk.com.tw" oMSG.From = "violet@kkk.com.tw" oMSG.Subject = "Hello Email" oMSG.TextBody = "This is an easy way to create an email" oMSG.Send() RELEASE omsg </pre> <pre> oMSG.HTMLBody="傳HTML格式" =oMSG.addattachment("C:\TEST.TXT") <--傳附件 </pre> ===使用JMail=== 請參考 Ruey 提供的連結. [http://www.hg-fix.com/ 数据恢复] [http://www.hg-fix.com/ 硬盘数据恢复] [http://www.hg-fix.com/ 磁带数据恢复] [http://www.hg-fix.com/ raid数据恢复] [http://www.hg-fix.com/ 磁盘阵列数据恢复] [http://www.hg-fix.com/diskrecover.htm 数据恢复] [http://www.hg-fix.com/taperecover.htm 数据恢复] [http://www.hg-fix.com/raidrecover.htm 数据恢复] [http://www.hg-fix.com/ 数据修复] [http://www.hg-fix.com/ 硬盘数据修复] [http://www.hg-fix.com/ 磁带数据修复] [http://www.hg-fix.com/ raid数据修复] [http://www.hg-fix.com/diskrecover.htm 数据修复] [http://www.hg-fix.com/raidrecover.htm 数据修复] [http://www.hg-fix.com/taperecover.htm 数据修复] [http://www.hg-fix.com/ 磁盘阵列数据修复]
返回到
如何寄信
。
檢視
頁面
討論
原始碼
歷史
個人工具
登入/建立新帳號 選單
導航
首頁
社群入口
現時事件
近期變動
隨機頁面
使用說明
搜尋
工具箱
鏈入頁面
相關頁面修訂記錄
所有特殊頁面