> ## Documentation Index
> Fetch the complete documentation index at: https://syncmaven.sh/llms.txt
> Use this file to discover all available pages before exploring further.

# File

export const Destination = ({name, url, docker = `syncmaven/${name}`, description}) => <>
    <p><a href={url} style={{
  textTransform: 'capitalize'
}}>{name}</a> is a {description}</p>
    <p>To use {name}, create a new <a href="/fundametals/connection">connection</a> file in <code>./connections</code> folder.</p>
    <pre className="language-yaml">

      {[`# file: connections/${name}.yaml`, `package:`, `  type: docker`, `  image: ${docker}`, `credentials:`, `  ....`].join('\n')}

    </pre>
    <p>
      Run <code>syncmaven destination -p {docker}</code> command to see credentials specification.
    </p>
  </>;

<Destination name="resend" url="https://resend.io" description={"a platform for transactional and marketing emails"} docker="syncmaven/resend" />
