-
Notifications
You must be signed in to change notification settings - Fork 103
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
Cursor is below Embeded Signature whe using SetSignatureAsync in New outlook (in owa its work as expected) #5474
Comments
Here are some similar issues that might help you. Please check if they can solve your problem.
Possible solution (Extracted from existing issue, might be incorrect; please verify carefully) Solution 1:Thanks for reporting this issue regarding Signature API. It has been put on our backlog. We unfortunately have no timelines to share at this point. Reference: Solution 2:The rollout for this fix is now complete and the change is available in client version [20240520053] or greater. Reference: Powered by issue-sentinel |
Here are some similar issues that might help you. Please check if they can solve your problem.
Possible solution (Extracted from existing issue, might be incorrect; please verify carefully) Solution 1:Thanks for reporting the issue. It has been put on our backlog. We unfortunately have no timelines to share at this point. Reference: Solution 2:We have updated the documentation here: https://learn.microsoft.com/en-us/javascript/api/outlook/office.body?view=outlook-js-preview. Resolving the issue. Reference: Powered by issue-sentinel |
Here are some similar issues that might help you. Please check if they can solve your problem. Possible solution (Extracted from existing issue, might be incorrect; please verify carefully) We have fixed the bug, and the fix should be available in the next ~2 weeks. Closing the bug, please feel free to reactivate the thread if you have any comments. Reference: Powered by issue-sentinel |
Hey @zeeveladzim! Can you please provide us with a recording of the repro scenario for clear steps along with a sample addin (if possible), where the issue can be reproduced? |
Recording-20250312_121114.webm |
I was able to solve this issue was related to cache ,but not outlook cache |
Provide required information needed to triage your issue
Your Environment
*Pc Desktop
Microsoft Outlook Version: 1.2025.219.400 (Production)
Client Version: 20250228007.08
WebView2 Version: 133.0.3065.92 (Stable)
Session ID: 349d2f01-85ed-467e-8fe3-369e6be99bc5
Expected behavior
Should be working the same as in web version:
Cursor need to be on first line of message after Embeding Signature when reply all/forward is used
Current behavior
Cursor is below Embeded Signature whe using SetSignatureAsync in New outlook in owa its work as expected
Steps to reproduce
this simple function is used to embed html content into signature this will work good on web version but on outlook (new) the cursosr is below the signature
function saveBody(updatedContent, callback) {
Office.context.mailbox.item.body.setSignatureAsync(updatedContent, { coercionType: Office.CoercionType.Html }, function (asyncResult) {
if (asyncResult.status === Office.AsyncResultStatus.Succeeded) {
console.log("Signature updated successfully.");
} else {
console.error("Failed to update signature:", asyncResult.error.message);
}
// Always call the callback to complete the event
callback();
});
Link to live example(s)
Provide additional details
Context
Useful logs
Thank you for taking the time to report an issue. Our triage team will respond to you in less than 72 hours. Normally, response time is <10 hours Monday through Friday. We do not triage on weekends.
The text was updated successfully, but these errors were encountered: