-
Notifications
You must be signed in to change notification settings - Fork 458
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
update body before send_message #802
Comments
I don't think that's going to work (anymore). AFAIK 2 things have changed on Gmail's end:
First of all, I believe the This will cause a disconnect in time between when the email-editor view is open and the sending of the actual email (and thus the triggering of the event) happens. This may be causing confusion on your end? Secondly, the event-data has changed. In the olde days, gmail would send the entire mail as you clicked send, and we could (as I understand) intercept and modify the contents before the email was sent off. Now the email contents is constantly passed off to the gmail-servers as the user authors it, and when you click "Send" gmail just instructs the server to send the message which is already uploaded. This means that to modify the message "on send", you must:
Not undoable... But nothing I have tried or even prototyped. And it's clearly outside the scope of what Gmail.js plans to deliver of features. If you want to do this, you're on your own... But feel free to share with the community how you did it! |
For anyone wanting to do this I achieved it by creating a fake send button and placing it on top of the real one, intercepting click on it and then clicking the original send button programmatically private listenToSendEvents(): void {
const { originalSendButton, sendButtonCopy } = this.mockSendButton();
sendButtonCopy.addEventListener('click', async () => {
// add your text in the email body or other operations here
originalSendButton.click();
});
}
private mockSendButton(): {
originalSendButton: HTMLDivElement;
sendButtonCopy: HTMLDivElement;
} {
const originalSendButton = this.gmailEditor.querySelector(
'.aoO',
)! as HTMLDivElement; // whatever your dom query is to get the original send button of the current editor
const copy = originalSendButton.cloneNode(true) as HTMLDivElement;
copy.style.zIndex = '30001';
originalSendButton.style.position = 'absolute';
originalSendButton.parentElement!.style.position = 'relative';
originalSendButton.parentNode!.insertBefore(copy, originalSendButton);
return {
originalSendButton,
sendButtonCopy: copy,
};
} |
Hi!!
I am trying to add a text to the body right before the send_message is executed. I am making the changes using the before send_message listener, but I don't see the change being reflected. Is there any way to do this?
The text was updated successfully, but these errors were encountered: