You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 4, 2024. It is now read-only.
I need create a automation script export the address book for any email accounts without authentication.
example for web control panel migration to another server.
I create a php script, My solution export work only "cvs" format.
Do you have solution, API for export the vcf format ?
How to solve this ?
PHP Fatal error: Uncaught Error: Class 'SabreForRainLoop\VObject\Component\VCard' not found in /var/www/html/rainloop-book.php:10
Stack trace:
#0 {main}
thrown in /var/www/html/rainloop-export.php on line 10
Fatal error: Uncaught Error: Class 'SabreForRainLoop\VObject\Component\VCard' not found in /var/www/html/rainloop-book.php:10
Stack trace:
#0 {main}
thrown in /var/www/html/rainloop-export.php on line 10
public function ToVCard($sPreVCard = '', $oLogger = null)
{
$this->UpdateDependentValues();
if (!\class_exists('SabreForRainLoop\DAV\Client'))
{
# return ''; <<< i try to comment this.
}
if ("\xef\xbb\xbf" === \substr($sPreVCard, 0, 3))
{
$sPreVCard = \substr($sPreVCard, 3);
}
$oVCard = null;
if (0 < \strlen($sPreVCard))
{
try
{
$oVCard = \SabreForRainLoop\VObject\Reader::read($sPreVCard);
}
catch (\Exception $oExc)
{
if ($oLogger)
{
$oLogger->WriteException($oExc);
$oLogger->WriteDump($sPreVCard);
}
}
}
Thank you.
The text was updated successfully, but these errors were encountered:
mean-cj
changed the title
How can i export address by email address? (vcf format)
How can i export address book by email address without authen ? (vcf format)
Jun 14, 2023
Dear Rainloop Team
I need create a automation script export the address book for any email accounts without authentication.
example for web control panel migration to another server.
I create a php script, My solution export work only "cvs" format.
Do you have solution, API for export the vcf format ?
How to solve this ?
rainloop-export.php
app/libraries/RainLoop/Providers/AddressBook/Classes/Contact.php
/app/libraries/RainLoop/Providers/AddressBook/Classes/Contact.php
Thank you.
The text was updated successfully, but these errors were encountered: