1
0
Fork 0
mirror of https://github.com/deltachat/deltachat-core.git synced 2025-10-04 02:09:17 +02:00

some further improvements -- and making all captions lower-case for the fun of it :)

This commit is contained in:
holger krekel 2018-09-14 18:25:44 +02:00
parent 8683de19e3
commit 959ac73122
8 changed files with 27 additions and 26 deletions

19
python/doc/examples.rst Normal file
View file

@ -0,0 +1,19 @@
examples
========
::
# instantiate and configure deltachat account
import deltachat
ac1 = deltachat.Account("/tmp/db")
ac.set_config(addr="test2@hq5.merlinux.eu", mail_pw="********")
# start configuration activity and smtp/imap threads
ac.start()
# create a contact and send a message
contact = ac.create_contact("test3@hq5.merlinux.eu")
...