1
I have an order system that sends automatic email to representatives with attachment of a pdf file made in fpdf, but now the company has requested that instead of sending automatic would like to use outlook as an alternative send, as this would receive acknowledgement of receipt and confirmation and maintain a history in the outllok until the order is made, I am outlook
because all users using the system have it installed on the machines. I know that in C# asp.net
this is possible, but in PHP
I found nothing related to the subject.
Or there is a php library that could use it in a similar way to Webmail that could be called every time we complete a request?
I am using this link to send it until it fills the email of the recipient and the subject, but does not attach the generated pdf automatically.
<a href="mailto:[email protected]?subject=Envio de pedido&body=Por favor atentar aos ítens">Enviar</a>
Setting up outlook as the default email client on the machine would solve the problem?
– rray
It is already the default client, the problem is in attaching the pdf dynamically, without downloading the file and attaching manually, on
aspx
i use a dll that integrates outlook to system and internal email sending with it, I know that in this way is not possible onphp
so I created a link to call the default program.– WMomesso
gostaria de usar o outlook como alternativa de envio, pois assim receberia aviso de recebimento
-> the ideal is to find out how Outlook can do this, and replicate the functionality in emails generated through PHP.– Oralista de Sistemas