-
Notifications
You must be signed in to change notification settings - Fork 211
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature: Send (Mail,DM) top pick photos from the past #683
Comments
The only such hub that I'm aware of (and have tried myself) is Apprise, it has email support as well as several chat apps like Telegram but I don't see Facebook Messenger on the list unfortunately so you'd still have to add that |
So the e-mail sending part I was able to create, but that is only half success. Thanks for the Apprise, but its not necessary what I'm looking for. 1) i would prefer not to add python dependency to the app to keep is simple. 2) I wanted something I send a HTTP request to and forwards the message to the right place. Like an external messaging hub. I tried to understand FB messenger and it seems that officially it is not possible to send messages to a group. Bot can only reply on pages: https://stackoverflow.com/questions/53598526/facebook-graph-api-how-to-send-chat-message-to-all-members-of-a-group |
Having a second though. In the long term, I will try to come up with some add-on methods, where every can implement their own messaging method. |
Note it will trigger a DB drop as the scheme changed. #683
Our bullseye also does not support it natively. Let's just use SMTP. That makes everything simpler. #683
kinda works. Good enough for this release. UX can be improved as it is a bit hard to use. But it will evolve as I use it more often. |
Great Feature! I just tested on 2.0.0 and it works well so far! Just one question: Is there any template file or something similiar to modify the Mail-Design for my needs? |
There is no such option for now.
I'm working on extensions, where you can implement your own "messenger"
logic. You can do whatever you want there. That would be a bit more complex
than just supporting a mail design, but also more flexible.
…On Wed, Nov 8, 2023 at 3:28 PM knalltuete86 ***@***.***> wrote:
Great Feature! I just tested on 2.0.0 and it works well so far!
Just one question: Is there any template file or something similiar to
modify the Mail-Design for my needs?
—
Reply to this email directly, view it on GitHub
<#683 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ABZKA5XZYQHOOJW7VFFO33LYDOJHFAVCNFSM6AAAAAA24OAXHOVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMYTQMBRHE4TQOJRGU>
.
You are receiving this because you modified the open/close state.Message
ID: ***@***.***>
|
Some of us are running our own email bridge locked down to specific IP addresses with no authentication required. |
Main effort
I want to improve engagement and memory discovery in the app. This feature falls into this category
Vision of this Feature
As a family we use Facebook Messenger to communicate. I would like pigallery2 to send every Monday 10AM a set of photos that happened on the same week, but years earlier.
Prerequisite
Nothing by now. It was blocked on #660.
Design
Getting the photos
I will create a new Job that can run periodically. Users can set a search query, sort order and number of photos/videos to pick.
(It will use the same logic as random photo in the background, but it will allow sorting and more than just one photo)
Sending the photos
This is the tricky part. I will def. support sending over e-mail and I would like to at least support FB Messenger. I understand that everyone uses different way of messages (IMessage, WhatsApp, Telegram, etc.). I will try to look if there is any free and simple messenger hub that offers an API to send photos to group chats on a given platform. If anyone know one, please don't hesitate to share.
If such easy and common hub does not exists, I will just support e-mail and FB Messenger and try to make the architecture easy enough, so others can send a PR for other services.
The text was updated successfully, but these errors were encountered: