flutter_mailer 0.5.0 flutter_mailer: ^0.5.0 copied to clipboard
Share an email to device Email - Client supports multiple Attachments
import 'dart:async';
import 'dart:io';
import 'package:flutter/services.dart';
import 'package:flutter/material.dart';
import 'package:flutter_mailer/flutter_mailer.dart';
import 'package:image_picker/image_picker.dart';
import 'package:path_provider/path_provider.dart';
void main() => runApp(new MyApp());
class MyApp extends StatefulWidget {
@override
_MyAppState createState() => new _MyAppState();
}
class _MyAppState extends State<MyApp> {
List<String> attachment = <String>[];
final TextEditingController _subjectController =
TextEditingController(text: 'the Subject');
final TextEditingController _bodyController = TextEditingController(
text: ''' <em>the body has <code>HTML</code></em> <br><br><br>
<strong>Some Apps like Gmail might ignore it</strong>
''');
final GlobalKey<ScaffoldState> _scafoldKey = GlobalKey<ScaffoldState>();
// Platform messages are asynchronous, so we initialize in an async method.
Future<void> send() async {
if(Platform.isIOS) {
final bool canSend = await FlutterMailer.canSendMail();
if(!canSend) {
const SnackBar snackbar = const SnackBar(content: Text('no Email App Available'));
_scafoldKey.currentState.showSnackBar(snackbar);
return;
}
}
// Platform messages may fail, so we use a try/catch PlatformException.
final MailOptions mailOptions = MailOptions(
body: _bodyController.text,
subject: _subjectController.text,
recipients: <String>['example@example.com'],
isHTML: true,
// bccRecipients: ['other@example.com'],
ccRecipients: <String>['third@example.com'],
attachments: attachment,
);
String platformResponse;
try {
await FlutterMailer.send(mailOptions);
platformResponse = 'success';
} on PlatformException catch (error) {
platformResponse = error.toString();
print(error);
if (!mounted) {
return;
}
await showDialog<void>(
context: _scafoldKey.currentContext,
builder: (BuildContext context) => AlertDialog(
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(4)),
content: Column(
mainAxisAlignment: MainAxisAlignment.start,
crossAxisAlignment: CrossAxisAlignment.start,
mainAxisSize: MainAxisSize.min,
children: <Widget>[
Text(
'Message',
style: Theme.of(context).textTheme.subtitle1,
),
Text(error.message),
],
),
contentPadding: const EdgeInsets.all(26),
title: Text(error.code),
));
} catch (error) {
platformResponse = error.toString();
}
// If the widget was removed from the tree while the asynchronous platform
// message was in flight, we want to discard the reply rather than calling
// setState to update our non-existent appearance.
if (!mounted) {
return;
}
_scafoldKey.currentState.showSnackBar(SnackBar(
content: Text(platformResponse),
));
}
@override
Widget build(BuildContext context) {
final Widget imagePath = Column(
children: attachment.map((String file) => Text('$file')).toList());
return new MaterialApp(
theme: ThemeData(primaryColor: Colors.red),
home: new Scaffold(
key: _scafoldKey,
appBar: new AppBar(
title: const Text('Plugin example app'),
actions: <Widget>[
IconButton(
onPressed: send,
icon: const Icon(Icons.send),
)
],
),
body: SingleChildScrollView(
child: new Center(
child: Padding(
padding: const EdgeInsets.all(8.0),
child: Column(
mainAxisSize: MainAxisSize.max,
// mainAxisAlignment: MainAxisAlignment.spaceBetween,
crossAxisAlignment: CrossAxisAlignment.center,
children: <Widget>[
Padding(
padding: const EdgeInsets.all(8.0),
child: TextField(
controller: _subjectController,
decoration: const InputDecoration(
border: OutlineInputBorder(),
labelText: 'Subject',
),
),
),
Padding(
padding: const EdgeInsets.all(8.0),
child: TextField(
controller: _bodyController,
maxLines: 10,
decoration: const InputDecoration(
labelText: 'Body', border: OutlineInputBorder()),
),
),
imagePath,
],
),
),
),
),
floatingActionButton: FloatingActionButton.extended(
icon: const Icon(Icons.camera),
label: const Text('Add Image'),
onPressed: _picker,
),
floatingActionButtonLocation: FloatingActionButtonLocation.endDocked,
bottomNavigationBar: BottomAppBar(
notchMargin: 4.0,
// shape: CircularNotchedRectangle(),
// color: Theme.of(context).primaryColor,
child: Row(
mainAxisSize: MainAxisSize.max,
children: <Widget>[
Builder(
builder: (BuildContext context) => FlatButton(
textColor: Theme.of(context).primaryColor,
child: const Text('add text File'),
onPressed: () => _onCreateFile(context),
),
)
],
),
),
),
);
}
void _picker() async {
final File pick = await ImagePicker.pickImage(source: ImageSource.gallery);
setState(() {
attachment.add(pick.path);
});
}
/// create a text file in Temporary Directory to share.
void _onCreateFile(BuildContext context) async {
final TempFile tempFile = await _showDialog(context);
final File newFile = await writeFile(tempFile.content, tempFile.name);
setState(() {
attachment.add(newFile.path);
});
}
/// some A simple dialog and return fileName and content
Future<TempFile> _showDialog(BuildContext context) {
return showDialog<TempFile>(
context: context,
builder: (BuildContext context) {
String content = '';
String fileName = '';
return SimpleDialog(
title: const Text('write something to a file'),
contentPadding: const EdgeInsets.all(8.0),
children: <Widget>[
TextField(
onChanged: (String str) => fileName = str,
autofocus: true,
decoration: const InputDecoration(
suffix: const Text('.txt'), labelText: 'file name'),
),
TextField(
decoration: const InputDecoration(
floatingLabelBehavior: FloatingLabelBehavior.auto,
labelText: 'Content',
),
onChanged: (String str) => content = str,
),
Row(
mainAxisAlignment: MainAxisAlignment.end,
children: <Widget>[
RaisedButton(
color: Theme.of(context).accentColor,
child: const Icon(Icons.save),
onPressed: () {
final TempFile tempFile =
TempFile(content: content, name: fileName);
// Map.from({'content': content, 'fileName': fileName});
Navigator.of(context).pop<TempFile>(tempFile);
},
),
],
)
],
);
},
);
}
Future<String> get _localPath async {
final Directory directory = await getTemporaryDirectory();
return directory.path;
}
Future<File> _localFile(String fileName) async {
final String path = await _localPath;
return File('$path/$fileName.txt');
}
Future<File> writeFile(String text, [String fileName = '']) async {
fileName = fileName.isNotEmpty ? fileName : 'fileName';
final File file = await _localFile(fileName);
// Write the file
return file.writeAsString('$text');
}
}
class TempFile {
TempFile({this.name, this.content});
final String name, content;
}