Notice: This forum has been recovered from an old backup, so some content, links, and dates may be outdated. The forum is currently read-only while we restore sign-in and registration functionality. Details
If you find this forum valuable and would like to help keep it online, donations to help cover hosting and domain costs are greatly appreciated, but never expected. You can support the forum through Buy Me a Coffee or Ko-fi. Thank you for helping preserve the EventGhost community.
If you find this forum valuable and would like to help keep it online, donations to help cover hosting and domain costs are greatly appreciated, but never expected. You can support the forum through Buy Me a Coffee or Ko-fi. Thank you for helping preserve the EventGhost community.
Hello
I am trying to activate E-mail plugin with Gmail but get this error
SMTP Protocol Error: Cannot connect to SMTP server "smpt.gmail.com:465"
1. My FireWall disabled ,
2. i tried port 25 instead of 465
3.I tried connect with Telnet and it looks connected.
Please help
I am trying to activate E-mail plugin with Gmail but get this error
SMTP Protocol Error: Cannot connect to SMTP server "smpt.gmail.com:465"
1. My FireWall disabled ,
2. i tried port 25 instead of 465
3.I tried connect with Telnet and it looks connected.
Please help
- Pako
- Plugin Developer
- Posts: 2294
- Joined: Sat Nov 11, 2006 1:31 pm
- Location: Czech Republic
- Contact:
Re: E-mail
I opened a new file in EventGhost, I added E-mail plugin and I configured it as follows:It worked on the first try.
I think that the problem must be elsewhere than in EventGhost or plugin.
Pako
I think that the problem must be elsewhere than in EventGhost or plugin.
Pako
Re: E-mail
Hi Pako
Thank for answer .
May be you can send me plugin " E-mail " you are using .
I also see that you using IMAP instead of POP.
Thanks Vadim
Thank for answer .
May be you can send me plugin " E-mail " you are using .
I also see that you using IMAP instead of POP.
Thanks Vadim
- Pako
- Plugin Developer
- Posts: 2294
- Joined: Sat Nov 11, 2006 1:31 pm
- Location: Czech Republic
- Contact:
Re: E-mail
I use the last version that was published here (post from 2013 4 24 Wed, 09:37).VADIM wrote:Hi Pako
Thank for answer .
May be you can send me plugin " E-mail " you are using.
Yes, I prefer to use IMAP if possible.VADIM wrote:I also see that you using IMAP instead of POP.
Pako
Re: E-mail
Hi Pako
I tried the newest plugin , but without the success.
My be problem in my Email Action configuration , can you please send me example .
Many thanks Vadim
I tried the newest plugin , but without the success.
My be problem in my Email Action configuration , can you please send me example .
Many thanks Vadim
- Pako
- Plugin Developer
- Posts: 2294
- Joined: Sat Nov 11, 2006 1:31 pm
- Location: Czech Republic
- Contact:
Re: E-mail
I highly doubt it.VADIM wrote:My be problem in my Email Action configuration , can you please send me example.
However - here is an example of an action that sends an e-mail.
Pako
Re: E-mail
Hi Pako
You are right the problem in the other place , the last i think is maybe my gmail account configurations .
If you know something about the requirements please tell me .
I am working with Eventghost tcp from/to my own Home Automation system , some plugins working very well but some require a lot of tuning .
Any way many many thanks and Best Regards .
You are right the problem in the other place , the last i think is maybe my gmail account configurations .
If you know something about the requirements please tell me .
I am working with Eventghost tcp from/to my own Home Automation system , some plugins working very well but some require a lot of tuning .
Any way many many thanks and Best Regards .
Re: E-mail
Hello All,
can anyone advise if this plugin is working??..I have downloaded it from the link and added it. I have read through all the posts and but can not get it working. I install and configure using imap for gmail, when I try to setup a send email action, the "ok" box is always not clickable although I filled in all required fields. This is also the case for start observation...thanks for any help that can be offered.
can anyone advise if this plugin is working??..I have downloaded it from the link and added it. I have read through all the posts and but can not get it working. I install and configure using imap for gmail, when I try to setup a send email action, the "ok" box is always not clickable although I filled in all required fields. This is also the case for start observation...thanks for any help that can be offered.
- Pako
- Plugin Developer
- Posts: 2294
- Joined: Sat Nov 11, 2006 1:31 pm
- Location: Czech Republic
- Contact:
Re: E-mail
This means that you have it configured incorrectly.dacari wrote:when I try to setup a send email action, the "ok" box is always not clickable although I filled in all required fields
But we do not know why.
You can put screenshot?
Pako
Re: E-mail
AAhhh...silly me!!..it works!!..thank you very much
Re: E-mail
Dear Pako,
I found a bug in your E-Mail plugin. Sending to multiple recipients doesn't work, because you pass the recipients as a string with comma delimited items, but smtp.sendmail expects a python list.
Instead of writing
you can change it to
Same is true for the "else" case (which I can't test, I have no idea, when this code is reached).
Thank you!
I found a bug in your E-Mail plugin. Sending to multiple recipients doesn't work, because you pass the recipients as a string with comma delimited items, but smtp.sendmail expects a python list.
Instead of writing
Code: Select all
if Copy is None:
smtp.sendmail(account[3], To, msg.as_string())
Code: Select all
if Copy is None:
rcpnt = To.split(',')
smtp.sendmail(account[3], rcpnt, msg.as_string())
Thank you!
- Pako
- Plugin Developer
- Posts: 2294
- Joined: Sat Nov 11, 2006 1:31 pm
- Location: Czech Republic
- Contact:
Re: E-mail
There is certainly a lot of bugs.wuffzack wrote:I found a bug in your E-Mail plugin.
I made ÔÇïÔÇïthis plugin a long time ago and my Python skills were very weak.
I thank you for reporting.
Pako
Re: E-mail
Hi all,
Can anyone tell me what I am doing wrong as I cant seem to send Emails
I get this Error:-
SMTP Protocol Error: Your message may not have been sent!
I am trying to get it to work with my gmail account
Thanks
Paul.
Can anyone tell me what I am doing wrong as I cant seem to send Emails
I get this Error:-
SMTP Protocol Error: Your message may not have been sent!
I am trying to get it to work with my gmail account
Thanks
Paul.