「Flutter/外部ライブラリ/メール送信/flutter email sender」の版間の差分
提供: 初心者エンジニアの簡易メモ
(ページの作成:「==インストール== pubspec.yaml <pre> dependencies: flutter_email_sender: ^2.2.1 </pre>」) |
|||
行1: | 行1: | ||
+ | ==flutter email senderとは== | ||
+ | 直でflutterからメール送信できるライブラリ | ||
+ | |||
==インストール== | ==インストール== | ||
pubspec.yaml | pubspec.yaml | ||
行4: | 行7: | ||
dependencies: | dependencies: | ||
flutter_email_sender: ^2.2.1 | flutter_email_sender: ^2.2.1 | ||
+ | </pre> | ||
+ | |||
+ | ==サンプル== | ||
+ | <pre> | ||
+ | import 'package:flutter_email_sender/flutter_email_sender.dart'; | ||
+ | final Email email = Email( | ||
+ | body: 'Email body', | ||
+ | subject: 'Email subject', | ||
+ | recipients: ['example@example.com'], | ||
+ | cc: ['cc@example.com'], | ||
+ | bcc: ['bcc@example.com'], | ||
+ | attachmentPath: '/path/to/attachment.zip', | ||
+ | isHTML: false, | ||
+ | ); | ||
+ | await FlutterEmailSender.send(email); | ||
</pre> | </pre> |
2019年12月5日 (木) 14:23時点における版
flutter email senderとは
直でflutterからメール送信できるライブラリ
インストール
pubspec.yaml
dependencies: flutter_email_sender: ^2.2.1
サンプル
import 'package:flutter_email_sender/flutter_email_sender.dart'; final Email email = Email( body: 'Email body', subject: 'Email subject', recipients: ['example@example.com'], cc: ['cc@example.com'], bcc: ['bcc@example.com'], attachmentPath: '/path/to/attachment.zip', isHTML: false, ); await FlutterEmailSender.send(email);