物件Smtp
Smtp對象
繼承關係
建構函數
Smtp
Smtp 物件建構函數
1new Smtp();
成員屬性
timeout
Integer, 查詢和設定超時時間單位毫秒
1Integer Smtp.timeout;
socket
1readonly Stream Smtp.socket;
成員函數
connect
建立到指定的伺服器
1Smtp.connect(String url) async;
呼叫參數:
- url: String, 指定連線的協議,可以是:tcp://host:port 或者ssl://host:port
command
發送指定命令,並回傳回應,伺服器報錯則拋出錯誤
1
2String Smtp.command(String cmd,
String arg) async;
呼叫參數:
- cmd: String, 命令名
- arg: String, 參數
回傳結果:
- String, 如果成功,回傳伺服器回應
hello
發送HELO 指令,伺服器報錯則拋出錯誤
1Smtp.hello(String hostname = "localhost") async;
呼叫參數:
- hostname: String, 主機名,預設為“localhost”
login
用指定的使用者及密碼登入伺服器,伺服器報錯則拋出錯誤
1
2Smtp.login(String username,
String password) async;
呼叫參數:
- username: String, 使用者名稱
- password: String, 密碼
from
指定寄件者信箱,伺服器報錯則拋出錯誤
1Smtp.from(String address) async;
呼叫參數:
- address: String, 寄件者信箱
to
指定收件者信箱,伺服器報錯則拋出錯誤
1Smtp.to(String address) async;
呼叫參數:
- address: String, 收件者信箱
data
發送文字到收件人,伺服器報錯則拋出錯誤
1Smtp.data(String txt) async;
呼叫參數:
- txt: String, 要傳送的文本
quit
退出並關閉連接,伺服器報錯則拋出錯誤
1Smtp.quit() async;
toString
傳回物件的字串表示,一般回傳"[Native Object]",物件可以根據自己的特性重新實現
1String Smtp.toString();
回傳結果:
- String, 傳回物件的字串表示
toJSON
傳回物件的JSON 格式表示,一般傳回物件定義的可讀屬性集合
1Value Smtp.toJSON(String key = "");
呼叫參數:
- key: String, 未使用
回傳結果:
- Value, 傳回包含可JSON 序列化的值