-
Hi, I did research a lot but I still couldn't find what's the right scope for listing the emails? I have currently enabled On https://developers.fattureincloud.it/docs/basics/scopes I see the "emails:r" scope, but I don't see it in the php-sdk, so I'm a bit conufsed. Also is there a property to know if an invoice has been sent by email in GetIssuedDocumentResponse or how can I figure it out? Last question which is not clear to me: does the e-invoice get sent to the client after it has been sent to the SDI or do I have to schedule the email? Many thanks for your help, Max. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
Hello @maxi1187
At this moment, I confirm there's no such parameter. you can though check if the Webhooks functionality can help you with that, since the email_sent events are listed: Notification Types. The e-invoice and the email are two different things:
The two functionalities are independent, and the two methods must be called separately if needed. Let us know if you have further questions. Thanks |
Beta Was this translation helpful? Give feedback.
Hello @maxi1187
yes, unfortunately, the emails:r scope is missing in our OpenAPI spec and also in our SDKs, we'll add it in the next SDKs releases.
In the meantime, I suggest you use this approach:
At this moment, I confirm there's no such parameter. you can though check if the Webhooks functionality can help you with that, since the email_sent events are listed: Notification Types.
The e-invoice and the email ar…